Models
Types

Models

User

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
name String?
  • -
No -
email String?
  • @unique
No -
emailVerified DateTime?
  • -
No -
image String?
  • -
No -
accounts Account[]
  • -
Yes -
blocking Block[]
  • -
Yes -
blocked Block[]
  • -
Yes -
chatMessages ChatMessage[]
  • -
Yes -
comments Comment[]
  • -
Yes -
ownedCommunes Commune[]
  • -
Yes -
communes CommuneUser[]
  • -
Yes -
fanOf Fan[]
  • -
Yes -
fans Fan[]
  • -
Yes -
follower Follow[]
  • -
Yes -
following Follow[]
  • -
Yes -
galleries Gallery[]
  • -
Yes -
images Image[]
  • -
Yes -
likes Like[]
  • -
Yes -
posts Post[]
  • -
Yes -
sessions Session[]
  • -
Yes -
shares Share[]
  • -
Yes -
chats ChatRoom[]
  • -
Yes -
membershipId String?
  • @unique
No -
membership Membership?
  • -
No -
books Book[]
  • -
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

Post

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
visible Boolean
  • @default(true)
Yes -
content String?
  • -
No -
shareId String?
  • -
No -
commentId String?
  • -
No -
authorId String
  • -
Yes -
images Image[]
  • -
Yes -
likes Like[]
  • -
Yes -
author User
  • -
Yes -
news News?
  • -
No -
comment Post?
  • -
No -
post_comments Post[]
  • -
Yes -
shares Share[]
  • -
Yes -

Operations

findUnique

Find zero or one Post

// Get one Post
const post = await prisma.post.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostWhereUniqueInput Yes

Output

Type: Post
Required: No
List: No

findFirst

Find first Post

// Get one Post
const post = await prisma.post.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostWhereInput No
orderBy PostOrderByWithRelationInput[] | PostOrderByWithRelationInput No
cursor PostWhereUniqueInput No
take Int No
skip Int No
distinct PostScalarFieldEnum[] No

Output

Type: Post
Required: No
List: No

findMany

Find zero or more Post

// Get all Post
const Post = await prisma.post.findMany()
// Get first 10 Post
const Post = await prisma.post.findMany({ take: 10 })

Input

Name Type Required
where PostWhereInput No
orderBy PostOrderByWithRelationInput[] | PostOrderByWithRelationInput No
cursor PostWhereUniqueInput No
take Int No
skip Int No
distinct PostScalarFieldEnum[] No

Output

Type: Post
Required: Yes
List: Yes

create

Create one Post

// Create one Post
const Post = await prisma.post.create({
  data: {
    // ... data to create a Post
  }
})

Input

Name Type Required
data PostCreateInput | PostUncheckedCreateInput Yes

Output

Type: Post
Required: Yes
List: No

delete

Delete one Post

// Delete one Post
const Post = await prisma.post.delete({
  where: {
    // ... filter to delete one Post
  }
})

Input

Name Type Required
where PostWhereUniqueInput Yes

Output

Type: Post
Required: No
List: No

update

Update one Post

// Update one Post
const post = await prisma.post.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostUpdateInput | PostUncheckedUpdateInput Yes
where PostWhereUniqueInput Yes

Output

Type: Post
Required: No
List: No

deleteMany

Delete zero or more Post

// Delete a few Post
const { count } = await prisma.post.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PostWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Post

const { count } = await prisma.post.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PostUpdateManyMutationInput | PostUncheckedUpdateManyInput Yes
where PostWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Post

// Update or create a Post
const post = await prisma.post.upsert({
  create: {
    // ... data to create a Post
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Post we want to update
  }
})

Input

Name Type Required
where PostWhereUniqueInput Yes
create PostCreateInput | PostUncheckedCreateInput Yes
update PostUpdateInput | PostUncheckedUpdateInput Yes

Output

Type: Post
Required: Yes
List: No

News

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
visible Boolean
  • @default(true)
Yes -
title String
  • -
Yes -
banner String?
  • -
No -
startDate DateTime?
  • -
No -
endDate DateTime?
  • -
No -
postId String
  • @unique
Yes -
post Post
  • -
Yes -
audience Audience
  • -
Yes -
views Int
  • @default(0)
Yes -
priority Int
  • @default(0)
Yes -

Operations

findUnique

Find zero or one News

// Get one News
const news = await prisma.news.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where NewsWhereUniqueInput Yes

Output

Type: News
Required: No
List: No

findFirst

Find first News

// Get one News
const news = await prisma.news.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where NewsWhereInput No
orderBy NewsOrderByWithRelationInput[] | NewsOrderByWithRelationInput No
cursor NewsWhereUniqueInput No
take Int No
skip Int No
distinct NewsScalarFieldEnum[] No

Output

Type: News
Required: No
List: No

findMany

Find zero or more News

// Get all News
const News = await prisma.news.findMany()
// Get first 10 News
const News = await prisma.news.findMany({ take: 10 })

Input

Name Type Required
where NewsWhereInput No
orderBy NewsOrderByWithRelationInput[] | NewsOrderByWithRelationInput No
cursor NewsWhereUniqueInput No
take Int No
skip Int No
distinct NewsScalarFieldEnum[] No

Output

Type: News
Required: Yes
List: Yes

create

Create one News

// Create one News
const News = await prisma.news.create({
  data: {
    // ... data to create a News
  }
})

Input

Name Type Required
data NewsCreateInput | NewsUncheckedCreateInput Yes

Output

Type: News
Required: Yes
List: No

delete

Delete one News

// Delete one News
const News = await prisma.news.delete({
  where: {
    // ... filter to delete one News
  }
})

Input

Name Type Required
where NewsWhereUniqueInput Yes

Output

Type: News
Required: No
List: No

update

Update one News

// Update one News
const news = await prisma.news.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data NewsUpdateInput | NewsUncheckedUpdateInput Yes
where NewsWhereUniqueInput Yes

Output

Type: News
Required: No
List: No

deleteMany

Delete zero or more News

// Delete a few News
const { count } = await prisma.news.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where NewsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one News

const { count } = await prisma.news.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data NewsUpdateManyMutationInput | NewsUncheckedUpdateManyInput Yes
where NewsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one News

// Update or create a News
const news = await prisma.news.upsert({
  create: {
    // ... data to create a News
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the News we want to update
  }
})

Input

Name Type Required
where NewsWhereUniqueInput Yes
create NewsCreateInput | NewsUncheckedCreateInput Yes
update NewsUpdateInput | NewsUncheckedUpdateInput Yes

Output

Type: News
Required: Yes
List: No

Name Type Attributes Required Comment

Find zero or one Gallery

// Get one Gallery
const gallery = await prisma.gallery.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GalleryWhereUniqueInput Yes

Output

Type: Gallery
Required: No
List: No

Find first Gallery

// Get one Gallery
const gallery = await prisma.gallery.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GalleryWhereInput No
orderBy GalleryOrderByWithRelationInput[] | GalleryOrderByWithRelationInput No
cursor GalleryWhereUniqueInput No
take Int No
skip Int No
distinct GalleryScalarFieldEnum[] No

Output

Type: Gallery
Required: No
List: No

Find zero or more Gallery

// Get all Gallery
const Gallery = await prisma.gallery.findMany()
// Get first 10 Gallery
const Gallery = await prisma.gallery.findMany({ take: 10 })

Input

Name Type Required
where GalleryWhereInput No
orderBy GalleryOrderByWithRelationInput[] | GalleryOrderByWithRelationInput No
cursor GalleryWhereUniqueInput No
take Int No
skip Int No
distinct GalleryScalarFieldEnum[] No

Output

Type: Gallery
Required: Yes
List: Yes

Create one Gallery

// Create one Gallery
const Gallery = await prisma.gallery.create({
  data: {
    // ... data to create a Gallery
  }
})

Input

Name Type Required
data GalleryCreateInput | GalleryUncheckedCreateInput Yes

Output

Type: Gallery
Required: Yes
List: No

Delete one Gallery

// Delete one Gallery
const Gallery = await prisma.gallery.delete({
  where: {
    // ... filter to delete one Gallery
  }
})

Input

Name Type Required
where GalleryWhereUniqueInput Yes

Output

Type: Gallery
Required: No
List: No

Update one Gallery

// Update one Gallery
const gallery = await prisma.gallery.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GalleryUpdateInput | GalleryUncheckedUpdateInput Yes
where GalleryWhereUniqueInput Yes

Output

Type: Gallery
Required: No
List: No

Delete zero or more Gallery

// Delete a few Gallery
const { count } = await prisma.gallery.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GalleryWhereInput No

Output

Required: Yes
List: No

Update zero or one Gallery

const { count } = await prisma.gallery.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GalleryUpdateManyMutationInput | GalleryUncheckedUpdateManyInput Yes
where GalleryWhereInput No

Output

Required: Yes
List: No

Create or update one Gallery

// Update or create a Gallery
const gallery = await prisma.gallery.upsert({
  create: {
    // ... data to create a Gallery
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Gallery we want to update
  }
})

Input

Name Type Required
where GalleryWhereUniqueInput Yes
create GalleryCreateInput | GalleryUncheckedCreateInput Yes
update GalleryUpdateInput | GalleryUncheckedUpdateInput Yes

Output

Type: Gallery
Required: Yes
List: No

Image

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
visible Boolean
  • @default(true)
Yes -
title String?
  • -
No -
authorId String
  • -
Yes -
galleryId String?
  • -
No -
shareId String?
  • -
No -
url String
  • -
Yes -
postId String?
  • -
No -
height Int?
  • @default(0)
No -
width Int?
  • @default(0)
No -
author User
  • -
Yes -
post Post?
  • -
No -
likes Like[]
  • -
Yes -
shares Share[]
  • -
Yes -

Operations

findUnique

Find zero or one Image

// Get one Image
const image = await prisma.image.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ImageWhereUniqueInput Yes

Output

Type: Image
Required: No
List: No

findFirst

Find first Image

// Get one Image
const image = await prisma.image.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ImageWhereInput No
orderBy ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput No
cursor ImageWhereUniqueInput No
take Int No
skip Int No
distinct ImageScalarFieldEnum[] No

Output

Type: Image
Required: No
List: No

findMany

Find zero or more Image

// Get all Image
const Image = await prisma.image.findMany()
// Get first 10 Image
const Image = await prisma.image.findMany({ take: 10 })

Input

Name Type Required
where ImageWhereInput No
orderBy ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput No
cursor ImageWhereUniqueInput No
take Int No
skip Int No
distinct ImageScalarFieldEnum[] No

Output

Type: Image
Required: Yes
List: Yes

create

Create one Image

// Create one Image
const Image = await prisma.image.create({
  data: {
    // ... data to create a Image
  }
})

Input

Name Type Required
data ImageCreateInput | ImageUncheckedCreateInput Yes

Output

Type: Image
Required: Yes
List: No

delete

Delete one Image

// Delete one Image
const Image = await prisma.image.delete({
  where: {
    // ... filter to delete one Image
  }
})

Input

Name Type Required
where ImageWhereUniqueInput Yes

Output

Type: Image
Required: No
List: No

update

Update one Image

// Update one Image
const image = await prisma.image.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ImageUpdateInput | ImageUncheckedUpdateInput Yes
where ImageWhereUniqueInput Yes

Output

Type: Image
Required: No
List: No

deleteMany

Delete zero or more Image

// Delete a few Image
const { count } = await prisma.image.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ImageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Image

const { count } = await prisma.image.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ImageUpdateManyMutationInput | ImageUncheckedUpdateManyInput Yes
where ImageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Image

// Update or create a Image
const image = await prisma.image.upsert({
  create: {
    // ... data to create a Image
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Image we want to update
  }
})

Input

Name Type Required
where ImageWhereUniqueInput Yes
create ImageCreateInput | ImageUncheckedCreateInput Yes
update ImageUpdateInput | ImageUncheckedUpdateInput Yes

Output

Type: Image
Required: Yes
List: No

Like

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
authorId String
  • -
Yes -
postId String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
galleryId String?
  • -
No -
imageId String?
  • -
No -
commentId String?
  • -
No -
characterId String?
  • -
No -
bookId String?
  • -
No -
author User
  • -
Yes -
comment Comment?
  • -
No -
image Image?
  • -
No -
post Post?
  • -
No -
character Character?
  • -
No -
book Book?
  • -
No -

Operations

findUnique

Find zero or one Like

// Get one Like
const like = await prisma.like.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LikeWhereUniqueInput Yes

Output

Type: Like
Required: No
List: No

findFirst

Find first Like

// Get one Like
const like = await prisma.like.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LikeWhereInput No
orderBy LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput No
cursor LikeWhereUniqueInput No
take Int No
skip Int No
distinct LikeScalarFieldEnum[] No

Output

Type: Like
Required: No
List: No

findMany

Find zero or more Like

// Get all Like
const Like = await prisma.like.findMany()
// Get first 10 Like
const Like = await prisma.like.findMany({ take: 10 })

Input

Name Type Required
where LikeWhereInput No
orderBy LikeOrderByWithRelationInput[] | LikeOrderByWithRelationInput No
cursor LikeWhereUniqueInput No
take Int No
skip Int No
distinct LikeScalarFieldEnum[] No

Output

Type: Like
Required: Yes
List: Yes

create

Create one Like

// Create one Like
const Like = await prisma.like.create({
  data: {
    // ... data to create a Like
  }
})

Input

Name Type Required
data LikeCreateInput | LikeUncheckedCreateInput Yes

Output

Type: Like
Required: Yes
List: No

delete

Delete one Like

// Delete one Like
const Like = await prisma.like.delete({
  where: {
    // ... filter to delete one Like
  }
})

Input

Name Type Required
where LikeWhereUniqueInput Yes

Output

Type: Like
Required: No
List: No

update

Update one Like

// Update one Like
const like = await prisma.like.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LikeUpdateInput | LikeUncheckedUpdateInput Yes
where LikeWhereUniqueInput Yes

Output

Type: Like
Required: No
List: No

deleteMany

Delete zero or more Like

// Delete a few Like
const { count } = await prisma.like.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where LikeWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Like

const { count } = await prisma.like.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyInput Yes
where LikeWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Like

// Update or create a Like
const like = await prisma.like.upsert({
  create: {
    // ... data to create a Like
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Like we want to update
  }
})

Input

Name Type Required
where LikeWhereUniqueInput Yes
create LikeCreateInput | LikeUncheckedCreateInput Yes
update LikeUpdateInput | LikeUncheckedUpdateInput Yes

Output

Type: Like
Required: Yes
List: No

Share

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
visible Boolean
  • @default(true)
Yes -
authorId String
  • -
Yes -
postId String?
  • -
No -
galleryId String?
  • -
No -
imageId String?
  • -
No -
author User
  • -
Yes -
image Image?
  • -
No -
post Post?
  • -
No -

Operations

findUnique

Find zero or one Share

// Get one Share
const share = await prisma.share.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ShareWhereUniqueInput Yes

Output

Type: Share
Required: No
List: No

findFirst

Find first Share

// Get one Share
const share = await prisma.share.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ShareWhereInput No
orderBy ShareOrderByWithRelationInput[] | ShareOrderByWithRelationInput No
cursor ShareWhereUniqueInput No
take Int No
skip Int No
distinct ShareScalarFieldEnum[] No

Output

Type: Share
Required: No
List: No

findMany

Find zero or more Share

// Get all Share
const Share = await prisma.share.findMany()
// Get first 10 Share
const Share = await prisma.share.findMany({ take: 10 })

Input

Name Type Required
where ShareWhereInput No
orderBy ShareOrderByWithRelationInput[] | ShareOrderByWithRelationInput No
cursor ShareWhereUniqueInput No
take Int No
skip Int No
distinct ShareScalarFieldEnum[] No

Output

Type: Share
Required: Yes
List: Yes

create

Create one Share

// Create one Share
const Share = await prisma.share.create({
  data: {
    // ... data to create a Share
  }
})

Input

Name Type Required
data ShareCreateInput | ShareUncheckedCreateInput Yes

Output

Type: Share
Required: Yes
List: No

delete

Delete one Share

// Delete one Share
const Share = await prisma.share.delete({
  where: {
    // ... filter to delete one Share
  }
})

Input

Name Type Required
where ShareWhereUniqueInput Yes

Output

Type: Share
Required: No
List: No

update

Update one Share

// Update one Share
const share = await prisma.share.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ShareUpdateInput | ShareUncheckedUpdateInput Yes
where ShareWhereUniqueInput Yes

Output

Type: Share
Required: No
List: No

deleteMany

Delete zero or more Share

// Delete a few Share
const { count } = await prisma.share.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ShareWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Share

const { count } = await prisma.share.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ShareUpdateManyMutationInput | ShareUncheckedUpdateManyInput Yes
where ShareWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Share

// Update or create a Share
const share = await prisma.share.upsert({
  create: {
    // ... data to create a Share
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Share we want to update
  }
})

Input

Name Type Required
where ShareWhereUniqueInput Yes
create ShareCreateInput | ShareUncheckedCreateInput Yes
update ShareUpdateInput | ShareUncheckedUpdateInput Yes

Output

Type: Share
Required: Yes
List: No

Follow

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
followerId String
  • -
Yes -
followingId String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
follower User
  • -
Yes -
following User?
  • -
No -
characterId String?
  • -
No -
character Character?
  • -
No -
bookId String?
  • -
No -
book Book?
  • -
No -

Operations

findUnique

Find zero or one Follow

// Get one Follow
const follow = await prisma.follow.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowWhereUniqueInput Yes

Output

Type: Follow
Required: No
List: No

findFirst

Find first Follow

// Get one Follow
const follow = await prisma.follow.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowWhereInput No
orderBy FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput No
cursor FollowWhereUniqueInput No
take Int No
skip Int No
distinct FollowScalarFieldEnum[] No

Output

Type: Follow
Required: No
List: No

findMany

Find zero or more Follow

// Get all Follow
const Follow = await prisma.follow.findMany()
// Get first 10 Follow
const Follow = await prisma.follow.findMany({ take: 10 })

Input

Name Type Required
where FollowWhereInput No
orderBy FollowOrderByWithRelationInput[] | FollowOrderByWithRelationInput No
cursor FollowWhereUniqueInput No
take Int No
skip Int No
distinct FollowScalarFieldEnum[] No

Output

Type: Follow
Required: Yes
List: Yes

create

Create one Follow

// Create one Follow
const Follow = await prisma.follow.create({
  data: {
    // ... data to create a Follow
  }
})

Input

Name Type Required
data FollowCreateInput | FollowUncheckedCreateInput Yes

Output

Type: Follow
Required: Yes
List: No

delete

Delete one Follow

// Delete one Follow
const Follow = await prisma.follow.delete({
  where: {
    // ... filter to delete one Follow
  }
})

Input

Name Type Required
where FollowWhereUniqueInput Yes

Output

Type: Follow
Required: No
List: No

update

Update one Follow

// Update one Follow
const follow = await prisma.follow.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowUpdateInput | FollowUncheckedUpdateInput Yes
where FollowWhereUniqueInput Yes

Output

Type: Follow
Required: No
List: No

deleteMany

Delete zero or more Follow

// Delete a few Follow
const { count } = await prisma.follow.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FollowWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Follow

const { count } = await prisma.follow.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FollowUpdateManyMutationInput | FollowUncheckedUpdateManyInput Yes
where FollowWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Follow

// Update or create a Follow
const follow = await prisma.follow.upsert({
  create: {
    // ... data to create a Follow
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Follow we want to update
  }
})

Input

Name Type Required
where FollowWhereUniqueInput Yes
create FollowCreateInput | FollowUncheckedCreateInput Yes
update FollowUpdateInput | FollowUncheckedUpdateInput Yes

Output

Type: Follow
Required: Yes
List: No

Fan

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
fanId String
  • -
Yes -
fanOfId String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
fan User
  • -
Yes -
fanOf User
  • -
Yes -

Operations

findUnique

Find zero or one Fan

// Get one Fan
const fan = await prisma.fan.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FanWhereUniqueInput Yes

Output

Type: Fan
Required: No
List: No

findFirst

Find first Fan

// Get one Fan
const fan = await prisma.fan.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FanWhereInput No
orderBy FanOrderByWithRelationInput[] | FanOrderByWithRelationInput No
cursor FanWhereUniqueInput No
take Int No
skip Int No
distinct FanScalarFieldEnum[] No

Output

Type: Fan
Required: No
List: No

findMany

Find zero or more Fan

// Get all Fan
const Fan = await prisma.fan.findMany()
// Get first 10 Fan
const Fan = await prisma.fan.findMany({ take: 10 })

Input

Name Type Required
where FanWhereInput No
orderBy FanOrderByWithRelationInput[] | FanOrderByWithRelationInput No
cursor FanWhereUniqueInput No
take Int No
skip Int No
distinct FanScalarFieldEnum[] No

Output

Type: Fan
Required: Yes
List: Yes

create

Create one Fan

// Create one Fan
const Fan = await prisma.fan.create({
  data: {
    // ... data to create a Fan
  }
})

Input

Name Type Required
data FanCreateInput | FanUncheckedCreateInput Yes

Output

Type: Fan
Required: Yes
List: No

delete

Delete one Fan

// Delete one Fan
const Fan = await prisma.fan.delete({
  where: {
    // ... filter to delete one Fan
  }
})

Input

Name Type Required
where FanWhereUniqueInput Yes

Output

Type: Fan
Required: No
List: No

update

Update one Fan

// Update one Fan
const fan = await prisma.fan.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FanUpdateInput | FanUncheckedUpdateInput Yes
where FanWhereUniqueInput Yes

Output

Type: Fan
Required: No
List: No

deleteMany

Delete zero or more Fan

// Delete a few Fan
const { count } = await prisma.fan.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FanWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Fan

const { count } = await prisma.fan.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FanUpdateManyMutationInput | FanUncheckedUpdateManyInput Yes
where FanWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Fan

// Update or create a Fan
const fan = await prisma.fan.upsert({
  create: {
    // ... data to create a Fan
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Fan we want to update
  }
})

Input

Name Type Required
where FanWhereUniqueInput Yes
create FanCreateInput | FanUncheckedCreateInput Yes
update FanUpdateInput | FanUncheckedUpdateInput Yes

Output

Type: Fan
Required: Yes
List: No

ChatRoom

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
visible Boolean
  • @default(true)
Yes -
party String
  • @unique
Yes -
messages ChatMessage[]
  • -
Yes -
users User[]
  • -
Yes -

Operations

findUnique

Find zero or one ChatRoom

// Get one ChatRoom
const chatRoom = await prisma.chatRoom.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatRoomWhereUniqueInput Yes

Output

Type: ChatRoom
Required: No
List: No

findFirst

Find first ChatRoom

// Get one ChatRoom
const chatRoom = await prisma.chatRoom.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatRoomWhereInput No
orderBy ChatRoomOrderByWithRelationInput[] | ChatRoomOrderByWithRelationInput No
cursor ChatRoomWhereUniqueInput No
take Int No
skip Int No
distinct ChatRoomScalarFieldEnum[] No

Output

Type: ChatRoom
Required: No
List: No

findMany

Find zero or more ChatRoom

// Get all ChatRoom
const ChatRoom = await prisma.chatRoom.findMany()
// Get first 10 ChatRoom
const ChatRoom = await prisma.chatRoom.findMany({ take: 10 })

Input

Name Type Required
where ChatRoomWhereInput No
orderBy ChatRoomOrderByWithRelationInput[] | ChatRoomOrderByWithRelationInput No
cursor ChatRoomWhereUniqueInput No
take Int No
skip Int No
distinct ChatRoomScalarFieldEnum[] No

Output

Type: ChatRoom
Required: Yes
List: Yes

create

Create one ChatRoom

// Create one ChatRoom
const ChatRoom = await prisma.chatRoom.create({
  data: {
    // ... data to create a ChatRoom
  }
})

Input

Name Type Required
data ChatRoomCreateInput | ChatRoomUncheckedCreateInput Yes

Output

Type: ChatRoom
Required: Yes
List: No

delete

Delete one ChatRoom

// Delete one ChatRoom
const ChatRoom = await prisma.chatRoom.delete({
  where: {
    // ... filter to delete one ChatRoom
  }
})

Input

Name Type Required
where ChatRoomWhereUniqueInput Yes

Output

Type: ChatRoom
Required: No
List: No

update

Update one ChatRoom

// Update one ChatRoom
const chatRoom = await prisma.chatRoom.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatRoomUpdateInput | ChatRoomUncheckedUpdateInput Yes
where ChatRoomWhereUniqueInput Yes

Output

Type: ChatRoom
Required: No
List: No

deleteMany

Delete zero or more ChatRoom

// Delete a few ChatRoom
const { count } = await prisma.chatRoom.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatRoomWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ChatRoom

const { count } = await prisma.chatRoom.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatRoomUpdateManyMutationInput | ChatRoomUncheckedUpdateManyInput Yes
where ChatRoomWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ChatRoom

// Update or create a ChatRoom
const chatRoom = await prisma.chatRoom.upsert({
  create: {
    // ... data to create a ChatRoom
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ChatRoom we want to update
  }
})

Input

Name Type Required
where ChatRoomWhereUniqueInput Yes
create ChatRoomCreateInput | ChatRoomUncheckedCreateInput Yes
update ChatRoomUpdateInput | ChatRoomUncheckedUpdateInput Yes

Output

Type: ChatRoom
Required: Yes
List: No

ChatMessage

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
visible Boolean
  • @default(true)
Yes -
seen Boolean
  • @default(false)
Yes -
chatRoomId String
  • -
Yes -
authorId String
  • -
Yes -
content String
  • -
Yes -
author User
  • -
Yes -
chatRoom ChatRoom
  • -
Yes -

Operations

findUnique

Find zero or one ChatMessage

// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatMessageWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ChatMessage

// Get one ChatMessage
const chatMessage = await prisma.chatMessage.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatMessageWhereInput No
orderBy ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput No
cursor ChatMessageWhereUniqueInput No
take Int No
skip Int No
distinct ChatMessageScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ChatMessage

// Get all ChatMessage
const ChatMessage = await prisma.chatMessage.findMany()
// Get first 10 ChatMessage
const ChatMessage = await prisma.chatMessage.findMany({ take: 10 })

Input

Name Type Required
where ChatMessageWhereInput No
orderBy ChatMessageOrderByWithRelationInput[] | ChatMessageOrderByWithRelationInput No
cursor ChatMessageWhereUniqueInput No
take Int No
skip Int No
distinct ChatMessageScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ChatMessage

// Create one ChatMessage
const ChatMessage = await prisma.chatMessage.create({
  data: {
    // ... data to create a ChatMessage
  }
})

Input

Name Type Required
data ChatMessageCreateInput | ChatMessageUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ChatMessage

// Delete one ChatMessage
const ChatMessage = await prisma.chatMessage.delete({
  where: {
    // ... filter to delete one ChatMessage
  }
})

Input

Name Type Required
where ChatMessageWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ChatMessage

// Update one ChatMessage
const chatMessage = await prisma.chatMessage.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput Yes
where ChatMessageWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ChatMessage

// Delete a few ChatMessage
const { count } = await prisma.chatMessage.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChatMessageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ChatMessage

const { count } = await prisma.chatMessage.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyInput Yes
where ChatMessageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ChatMessage

// Update or create a ChatMessage
const chatMessage = await prisma.chatMessage.upsert({
  create: {
    // ... data to create a ChatMessage
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ChatMessage we want to update
  }
})

Input

Name Type Required
where ChatMessageWhereUniqueInput Yes
create ChatMessageCreateInput | ChatMessageUncheckedCreateInput Yes
update ChatMessageUpdateInput | ChatMessageUncheckedUpdateInput Yes

Output

Required: Yes
List: No

CommentThread

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
entity Entity
  • -
Yes -
requiredRole Role
  • @default(VIEW)
Yes -
blocked Block[]
  • -
Yes -
comments Comment[]
  • -
Yes -
commune Commune?
  • -
No -

Operations

findUnique

Find zero or one CommentThread

// Get one CommentThread
const commentThread = await prisma.commentThread.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentThreadWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first CommentThread

// Get one CommentThread
const commentThread = await prisma.commentThread.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentThreadWhereInput No
orderBy CommentThreadOrderByWithRelationInput[] | CommentThreadOrderByWithRelationInput No
cursor CommentThreadWhereUniqueInput No
take Int No
skip Int No
distinct CommentThreadScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more CommentThread

// Get all CommentThread
const CommentThread = await prisma.commentThread.findMany()
// Get first 10 CommentThread
const CommentThread = await prisma.commentThread.findMany({ take: 10 })

Input

Name Type Required
where CommentThreadWhereInput No
orderBy CommentThreadOrderByWithRelationInput[] | CommentThreadOrderByWithRelationInput No
cursor CommentThreadWhereUniqueInput No
take Int No
skip Int No
distinct CommentThreadScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one CommentThread

// Create one CommentThread
const CommentThread = await prisma.commentThread.create({
  data: {
    // ... data to create a CommentThread
  }
})

Input

Name Type Required
data CommentThreadCreateInput | CommentThreadUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one CommentThread

// Delete one CommentThread
const CommentThread = await prisma.commentThread.delete({
  where: {
    // ... filter to delete one CommentThread
  }
})

Input

Name Type Required
where CommentThreadWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one CommentThread

// Update one CommentThread
const commentThread = await prisma.commentThread.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentThreadUpdateInput | CommentThreadUncheckedUpdateInput Yes
where CommentThreadWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more CommentThread

// Delete a few CommentThread
const { count } = await prisma.commentThread.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentThreadWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one CommentThread

const { count } = await prisma.commentThread.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentThreadUpdateManyMutationInput | CommentThreadUncheckedUpdateManyInput Yes
where CommentThreadWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one CommentThread

// Update or create a CommentThread
const commentThread = await prisma.commentThread.upsert({
  create: {
    // ... data to create a CommentThread
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the CommentThread we want to update
  }
})

Input

Name Type Required
where CommentThreadWhereUniqueInput Yes
create CommentThreadCreateInput | CommentThreadUncheckedCreateInput Yes
update CommentThreadUpdateInput | CommentThreadUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Comment

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
threadType Entity
  • -
Yes -
threadId String
  • -
Yes -
authorId String
  • -
Yes -
content String
  • -
Yes -
visible Boolean
  • @default(true)
Yes -
author User
  • -
Yes -
thread CommentThread
  • -
Yes -
likes Like[]
  • -
Yes -

Operations

findUnique

Find zero or one Comment

// Get one Comment
const comment = await prisma.comment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentWhereUniqueInput Yes

Output

Type: Comment
Required: No
List: No

findFirst

Find first Comment

// Get one Comment
const comment = await prisma.comment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentWhereInput No
orderBy CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput No
cursor CommentWhereUniqueInput No
take Int No
skip Int No
distinct CommentScalarFieldEnum[] No

Output

Type: Comment
Required: No
List: No

findMany

Find zero or more Comment

// Get all Comment
const Comment = await prisma.comment.findMany()
// Get first 10 Comment
const Comment = await prisma.comment.findMany({ take: 10 })

Input

Name Type Required
where CommentWhereInput No
orderBy CommentOrderByWithRelationInput[] | CommentOrderByWithRelationInput No
cursor CommentWhereUniqueInput No
take Int No
skip Int No
distinct CommentScalarFieldEnum[] No

Output

Type: Comment
Required: Yes
List: Yes

create

Create one Comment

// Create one Comment
const Comment = await prisma.comment.create({
  data: {
    // ... data to create a Comment
  }
})

Input

Name Type Required
data CommentCreateInput | CommentUncheckedCreateInput Yes

Output

Type: Comment
Required: Yes
List: No

delete

Delete one Comment

// Delete one Comment
const Comment = await prisma.comment.delete({
  where: {
    // ... filter to delete one Comment
  }
})

Input

Name Type Required
where CommentWhereUniqueInput Yes

Output

Type: Comment
Required: No
List: No

update

Update one Comment

// Update one Comment
const comment = await prisma.comment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentUpdateInput | CommentUncheckedUpdateInput Yes
where CommentWhereUniqueInput Yes

Output

Type: Comment
Required: No
List: No

deleteMany

Delete zero or more Comment

// Delete a few Comment
const { count } = await prisma.comment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Comment

const { count } = await prisma.comment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommentUpdateManyMutationInput | CommentUncheckedUpdateManyInput Yes
where CommentWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Comment

// Update or create a Comment
const comment = await prisma.comment.upsert({
  create: {
    // ... data to create a Comment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Comment we want to update
  }
})

Input

Name Type Required
where CommentWhereUniqueInput Yes
create CommentCreateInput | CommentUncheckedCreateInput Yes
update CommentUpdateInput | CommentUncheckedUpdateInput Yes

Output

Type: Comment
Required: Yes
List: No

Commune

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
ownerId String
  • -
Yes -
entity Entity
  • -
Yes -
galleryId String?
  • @unique
No -
threadId String?
  • @unique
No -
owner User
  • -
Yes -
thread CommentThread?
  • -
No -
users CommuneUser[]
  • -
Yes -

Operations

findUnique

Find zero or one Commune

// Get one Commune
const commune = await prisma.commune.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommuneWhereUniqueInput Yes

Output

Type: Commune
Required: No
List: No

findFirst

Find first Commune

// Get one Commune
const commune = await prisma.commune.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommuneWhereInput No
orderBy CommuneOrderByWithRelationInput[] | CommuneOrderByWithRelationInput No
cursor CommuneWhereUniqueInput No
take Int No
skip Int No
distinct CommuneScalarFieldEnum[] No

Output

Type: Commune
Required: No
List: No

findMany

Find zero or more Commune

// Get all Commune
const Commune = await prisma.commune.findMany()
// Get first 10 Commune
const Commune = await prisma.commune.findMany({ take: 10 })

Input

Name Type Required
where CommuneWhereInput No
orderBy CommuneOrderByWithRelationInput[] | CommuneOrderByWithRelationInput No
cursor CommuneWhereUniqueInput No
take Int No
skip Int No
distinct CommuneScalarFieldEnum[] No

Output

Type: Commune
Required: Yes
List: Yes

create

Create one Commune

// Create one Commune
const Commune = await prisma.commune.create({
  data: {
    // ... data to create a Commune
  }
})

Input

Name Type Required
data CommuneCreateInput | CommuneUncheckedCreateInput Yes

Output

Type: Commune
Required: Yes
List: No

delete

Delete one Commune

// Delete one Commune
const Commune = await prisma.commune.delete({
  where: {
    // ... filter to delete one Commune
  }
})

Input

Name Type Required
where CommuneWhereUniqueInput Yes

Output

Type: Commune
Required: No
List: No

update

Update one Commune

// Update one Commune
const commune = await prisma.commune.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommuneUpdateInput | CommuneUncheckedUpdateInput Yes
where CommuneWhereUniqueInput Yes

Output

Type: Commune
Required: No
List: No

deleteMany

Delete zero or more Commune

// Delete a few Commune
const { count } = await prisma.commune.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommuneWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Commune

const { count } = await prisma.commune.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommuneUpdateManyMutationInput | CommuneUncheckedUpdateManyInput Yes
where CommuneWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Commune

// Update or create a Commune
const commune = await prisma.commune.upsert({
  create: {
    // ... data to create a Commune
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Commune we want to update
  }
})

Input

Name Type Required
where CommuneWhereUniqueInput Yes
create CommuneCreateInput | CommuneUncheckedCreateInput Yes
update CommuneUpdateInput | CommuneUncheckedUpdateInput Yes

Output

Type: Commune
Required: Yes
List: No

CommuneUser

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
communeId String
  • -
Yes -
userId String
  • -
Yes -
role Role
  • @default(VIEW)
Yes -
commune Commune
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one CommuneUser

// Get one CommuneUser
const communeUser = await prisma.communeUser.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommuneUserWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first CommuneUser

// Get one CommuneUser
const communeUser = await prisma.communeUser.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommuneUserWhereInput No
orderBy CommuneUserOrderByWithRelationInput[] | CommuneUserOrderByWithRelationInput No
cursor CommuneUserWhereUniqueInput No
take Int No
skip Int No
distinct CommuneUserScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more CommuneUser

// Get all CommuneUser
const CommuneUser = await prisma.communeUser.findMany()
// Get first 10 CommuneUser
const CommuneUser = await prisma.communeUser.findMany({ take: 10 })

Input

Name Type Required
where CommuneUserWhereInput No
orderBy CommuneUserOrderByWithRelationInput[] | CommuneUserOrderByWithRelationInput No
cursor CommuneUserWhereUniqueInput No
take Int No
skip Int No
distinct CommuneUserScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one CommuneUser

// Create one CommuneUser
const CommuneUser = await prisma.communeUser.create({
  data: {
    // ... data to create a CommuneUser
  }
})

Input

Name Type Required
data CommuneUserCreateInput | CommuneUserUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one CommuneUser

// Delete one CommuneUser
const CommuneUser = await prisma.communeUser.delete({
  where: {
    // ... filter to delete one CommuneUser
  }
})

Input

Name Type Required
where CommuneUserWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one CommuneUser

// Update one CommuneUser
const communeUser = await prisma.communeUser.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommuneUserUpdateInput | CommuneUserUncheckedUpdateInput Yes
where CommuneUserWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more CommuneUser

// Delete a few CommuneUser
const { count } = await prisma.communeUser.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CommuneUserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one CommuneUser

const { count } = await prisma.communeUser.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CommuneUserUpdateManyMutationInput | CommuneUserUncheckedUpdateManyInput Yes
where CommuneUserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one CommuneUser

// Update or create a CommuneUser
const communeUser = await prisma.communeUser.upsert({
  create: {
    // ... data to create a CommuneUser
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the CommuneUser we want to update
  }
})

Input

Name Type Required
where CommuneUserWhereUniqueInput Yes
create CommuneUserCreateInput | CommuneUserUncheckedCreateInput Yes
update CommuneUserUpdateInput | CommuneUserUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Membership

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
active Boolean
  • @default(true)
Yes -
level Audience?
  • @default(USER)
No -
user User?
  • -
No -

Operations

findUnique

Find zero or one Membership

// Get one Membership
const membership = await prisma.membership.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MembershipWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Membership

// Get one Membership
const membership = await prisma.membership.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MembershipWhereInput No
orderBy MembershipOrderByWithRelationInput[] | MembershipOrderByWithRelationInput No
cursor MembershipWhereUniqueInput No
take Int No
skip Int No
distinct MembershipScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Membership

// Get all Membership
const Membership = await prisma.membership.findMany()
// Get first 10 Membership
const Membership = await prisma.membership.findMany({ take: 10 })

Input

Name Type Required
where MembershipWhereInput No
orderBy MembershipOrderByWithRelationInput[] | MembershipOrderByWithRelationInput No
cursor MembershipWhereUniqueInput No
take Int No
skip Int No
distinct MembershipScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Membership

// Create one Membership
const Membership = await prisma.membership.create({
  data: {
    // ... data to create a Membership
  }
})

Input

Name Type Required
data MembershipCreateInput | MembershipUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Membership

// Delete one Membership
const Membership = await prisma.membership.delete({
  where: {
    // ... filter to delete one Membership
  }
})

Input

Name Type Required
where MembershipWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Membership

// Update one Membership
const membership = await prisma.membership.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MembershipUpdateInput | MembershipUncheckedUpdateInput Yes
where MembershipWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Membership

// Delete a few Membership
const { count } = await prisma.membership.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where MembershipWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Membership

const { count } = await prisma.membership.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data MembershipUpdateManyMutationInput | MembershipUncheckedUpdateManyInput Yes
where MembershipWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Membership

// Update or create a Membership
const membership = await prisma.membership.upsert({
  create: {
    // ... data to create a Membership
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Membership we want to update
  }
})

Input

Name Type Required
where MembershipWhereUniqueInput Yes
create MembershipCreateInput | MembershipUncheckedCreateInput Yes
update MembershipUpdateInput | MembershipUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Genre

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
title String
  • @unique
Yes -
description String
  • -
Yes -
fiction Boolean
  • @default(true)
Yes -
books Book[]
  • -
Yes -
covers Covers[]
  • -
Yes -

Operations

findUnique

Find zero or one Genre

// Get one Genre
const genre = await prisma.genre.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GenreWhereUniqueInput Yes

Output

Type: Genre
Required: No
List: No

findFirst

Find first Genre

// Get one Genre
const genre = await prisma.genre.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GenreWhereInput No
orderBy GenreOrderByWithRelationInput[] | GenreOrderByWithRelationInput No
cursor GenreWhereUniqueInput No
take Int No
skip Int No
distinct GenreScalarFieldEnum[] No

Output

Type: Genre
Required: No
List: No

findMany

Find zero or more Genre

// Get all Genre
const Genre = await prisma.genre.findMany()
// Get first 10 Genre
const Genre = await prisma.genre.findMany({ take: 10 })

Input

Name Type Required
where GenreWhereInput No
orderBy GenreOrderByWithRelationInput[] | GenreOrderByWithRelationInput No
cursor GenreWhereUniqueInput No
take Int No
skip Int No
distinct GenreScalarFieldEnum[] No

Output

Type: Genre
Required: Yes
List: Yes

create

Create one Genre

// Create one Genre
const Genre = await prisma.genre.create({
  data: {
    // ... data to create a Genre
  }
})

Input

Name Type Required
data GenreCreateInput | GenreUncheckedCreateInput Yes

Output

Type: Genre
Required: Yes
List: No

delete

Delete one Genre

// Delete one Genre
const Genre = await prisma.genre.delete({
  where: {
    // ... filter to delete one Genre
  }
})

Input

Name Type Required
where GenreWhereUniqueInput Yes

Output

Type: Genre
Required: No
List: No

update

Update one Genre

// Update one Genre
const genre = await prisma.genre.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GenreUpdateInput | GenreUncheckedUpdateInput Yes
where GenreWhereUniqueInput Yes

Output

Type: Genre
Required: No
List: No

deleteMany

Delete zero or more Genre

// Delete a few Genre
const { count } = await prisma.genre.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GenreWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Genre

const { count } = await prisma.genre.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GenreUpdateManyMutationInput | GenreUncheckedUpdateManyInput Yes
where GenreWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Genre

// Update or create a Genre
const genre = await prisma.genre.upsert({
  create: {
    // ... data to create a Genre
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Genre we want to update
  }
})

Input

Name Type Required
where GenreWhereUniqueInput Yes
create GenreCreateInput | GenreUncheckedCreateInput Yes
update GenreUpdateInput | GenreUncheckedUpdateInput Yes

Output

Type: Genre
Required: Yes
List: No

Covers

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
url String
  • -
Yes -
genreId String
  • -
Yes -
genre Genre
  • -
Yes -

Operations

findUnique

Find zero or one Covers

// Get one Covers
const covers = await prisma.covers.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CoversWhereUniqueInput Yes

Output

Type: Covers
Required: No
List: No

findFirst

Find first Covers

// Get one Covers
const covers = await prisma.covers.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CoversWhereInput No
orderBy CoversOrderByWithRelationInput[] | CoversOrderByWithRelationInput No
cursor CoversWhereUniqueInput No
take Int No
skip Int No
distinct CoversScalarFieldEnum[] No

Output

Type: Covers
Required: No
List: No

findMany

Find zero or more Covers

// Get all Covers
const Covers = await prisma.covers.findMany()
// Get first 10 Covers
const Covers = await prisma.covers.findMany({ take: 10 })

Input

Name Type Required
where CoversWhereInput No
orderBy CoversOrderByWithRelationInput[] | CoversOrderByWithRelationInput No
cursor CoversWhereUniqueInput No
take Int No
skip Int No
distinct CoversScalarFieldEnum[] No

Output

Type: Covers
Required: Yes
List: Yes

create

Create one Covers

// Create one Covers
const Covers = await prisma.covers.create({
  data: {
    // ... data to create a Covers
  }
})

Input

Name Type Required
data CoversCreateInput | CoversUncheckedCreateInput Yes

Output

Type: Covers
Required: Yes
List: No

delete

Delete one Covers

// Delete one Covers
const Covers = await prisma.covers.delete({
  where: {
    // ... filter to delete one Covers
  }
})

Input

Name Type Required
where CoversWhereUniqueInput Yes

Output

Type: Covers
Required: No
List: No

update

Update one Covers

// Update one Covers
const covers = await prisma.covers.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CoversUpdateInput | CoversUncheckedUpdateInput Yes
where CoversWhereUniqueInput Yes

Output

Type: Covers
Required: No
List: No

deleteMany

Delete zero or more Covers

// Delete a few Covers
const { count } = await prisma.covers.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CoversWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Covers

const { count } = await prisma.covers.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CoversUpdateManyMutationInput | CoversUncheckedUpdateManyInput Yes
where CoversWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Covers

// Update or create a Covers
const covers = await prisma.covers.upsert({
  create: {
    // ... data to create a Covers
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Covers we want to update
  }
})

Input

Name Type Required
where CoversWhereUniqueInput Yes
create CoversCreateInput | CoversUncheckedCreateInput Yes
update CoversUpdateInput | CoversUncheckedUpdateInput Yes

Output

Type: Covers
Required: Yes
List: No

BookCategory

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
title String
  • -
Yes -
description String
  • -
Yes -
books Book[]
  • -
Yes -

Operations

findUnique

Find zero or one BookCategory

// Get one BookCategory
const bookCategory = await prisma.bookCategory.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookCategoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BookCategory

// Get one BookCategory
const bookCategory = await prisma.bookCategory.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookCategoryWhereInput No
orderBy BookCategoryOrderByWithRelationInput[] | BookCategoryOrderByWithRelationInput No
cursor BookCategoryWhereUniqueInput No
take Int No
skip Int No
distinct BookCategoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BookCategory

// Get all BookCategory
const BookCategory = await prisma.bookCategory.findMany()
// Get first 10 BookCategory
const BookCategory = await prisma.bookCategory.findMany({ take: 10 })

Input

Name Type Required
where BookCategoryWhereInput No
orderBy BookCategoryOrderByWithRelationInput[] | BookCategoryOrderByWithRelationInput No
cursor BookCategoryWhereUniqueInput No
take Int No
skip Int No
distinct BookCategoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BookCategory

// Create one BookCategory
const BookCategory = await prisma.bookCategory.create({
  data: {
    // ... data to create a BookCategory
  }
})

Input

Name Type Required
data BookCategoryCreateInput | BookCategoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BookCategory

// Delete one BookCategory
const BookCategory = await prisma.bookCategory.delete({
  where: {
    // ... filter to delete one BookCategory
  }
})

Input

Name Type Required
where BookCategoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BookCategory

// Update one BookCategory
const bookCategory = await prisma.bookCategory.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookCategoryUpdateInput | BookCategoryUncheckedUpdateInput Yes
where BookCategoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BookCategory

// Delete a few BookCategory
const { count } = await prisma.bookCategory.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookCategoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BookCategory

const { count } = await prisma.bookCategory.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookCategoryUpdateManyMutationInput | BookCategoryUncheckedUpdateManyInput Yes
where BookCategoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BookCategory

// Update or create a BookCategory
const bookCategory = await prisma.bookCategory.upsert({
  create: {
    // ... data to create a BookCategory
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BookCategory we want to update
  }
})

Input

Name Type Required
where BookCategoryWhereUniqueInput Yes
create BookCategoryCreateInput | BookCategoryUncheckedCreateInput Yes
update BookCategoryUpdateInput | BookCategoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Book

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
active Boolean
  • @default(true)
Yes -
status BookStatus?
  • @default(PRIVATE)
No -
prospect Boolean
  • @default(false)
Yes -
title String
  • -
Yes -
cover String
  • -
Yes -
genreId String
  • -
Yes -
genre Genre
  • -
Yes -
categories BookCategory[]
  • -
Yes -
hook String?
  • -
No -
synopsis String?
  • -
No -
back String?
  • -
No -
words Int
  • @default(0)
Yes -
authors User[]
  • -
Yes -
chapters Chapter[]
  • -
Yes -
characters Character[]
  • -
Yes -
galleryId String?
  • @unique
No -
fans Follow[]
  • -
Yes -
likes Like[]
  • -
Yes -

Operations

findUnique

Find zero or one Book

// Get one Book
const book = await prisma.book.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookWhereUniqueInput Yes

Output

Type: Book
Required: No
List: No

findFirst

Find first Book

// Get one Book
const book = await prisma.book.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookWhereInput No
orderBy BookOrderByWithRelationInput[] | BookOrderByWithRelationInput No
cursor BookWhereUniqueInput No
take Int No
skip Int No
distinct BookScalarFieldEnum[] No

Output

Type: Book
Required: No
List: No

findMany

Find zero or more Book

// Get all Book
const Book = await prisma.book.findMany()
// Get first 10 Book
const Book = await prisma.book.findMany({ take: 10 })

Input

Name Type Required
where BookWhereInput No
orderBy BookOrderByWithRelationInput[] | BookOrderByWithRelationInput No
cursor BookWhereUniqueInput No
take Int No
skip Int No
distinct BookScalarFieldEnum[] No

Output

Type: Book
Required: Yes
List: Yes

create

Create one Book

// Create one Book
const Book = await prisma.book.create({
  data: {
    // ... data to create a Book
  }
})

Input

Name Type Required
data BookCreateInput | BookUncheckedCreateInput Yes

Output

Type: Book
Required: Yes
List: No

delete

Delete one Book

// Delete one Book
const Book = await prisma.book.delete({
  where: {
    // ... filter to delete one Book
  }
})

Input

Name Type Required
where BookWhereUniqueInput Yes

Output

Type: Book
Required: No
List: No

update

Update one Book

// Update one Book
const book = await prisma.book.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookUpdateInput | BookUncheckedUpdateInput Yes
where BookWhereUniqueInput Yes

Output

Type: Book
Required: No
List: No

deleteMany

Delete zero or more Book

// Delete a few Book
const { count } = await prisma.book.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Book

const { count } = await prisma.book.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookUpdateManyMutationInput | BookUncheckedUpdateManyInput Yes
where BookWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Book

// Update or create a Book
const book = await prisma.book.upsert({
  create: {
    // ... data to create a Book
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Book we want to update
  }
})

Input

Name Type Required
where BookWhereUniqueInput Yes
create BookCreateInput | BookUncheckedCreateInput Yes
update BookUpdateInput | BookUncheckedUpdateInput Yes

Output

Type: Book
Required: Yes
List: No

Character

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
active Boolean
  • @default(true)
Yes -
name String
  • -
Yes -
familyName String
  • -
Yes -
givenName String
  • -
Yes -
middleName String
  • -
Yes -
thumbnail String
  • -
Yes -
age String
  • -
Yes -
role String
  • -
Yes -
description String
  • -
Yes -
backstory String
  • -
Yes -
title String
  • -
Yes -
archetype String
  • -
Yes -
likes Like[]
  • -
Yes -
fans Follow[]
  • -
Yes -
books Book[]
  • -
Yes -
chapters Chapter[]
  • -
Yes -
galleryId String?
  • @unique
No -

Operations

findUnique

Find zero or one Character

// Get one Character
const character = await prisma.character.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CharacterWhereUniqueInput Yes

Output

Type: Character
Required: No
List: No

findFirst

Find first Character

// Get one Character
const character = await prisma.character.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CharacterWhereInput No
orderBy CharacterOrderByWithRelationInput[] | CharacterOrderByWithRelationInput No
cursor CharacterWhereUniqueInput No
take Int No
skip Int No
distinct CharacterScalarFieldEnum[] No

Output

Type: Character
Required: No
List: No

findMany

Find zero or more Character

// Get all Character
const Character = await prisma.character.findMany()
// Get first 10 Character
const Character = await prisma.character.findMany({ take: 10 })

Input

Name Type Required
where CharacterWhereInput No
orderBy CharacterOrderByWithRelationInput[] | CharacterOrderByWithRelationInput No
cursor CharacterWhereUniqueInput No
take Int No
skip Int No
distinct CharacterScalarFieldEnum[] No

Output

Type: Character
Required: Yes
List: Yes

create

Create one Character

// Create one Character
const Character = await prisma.character.create({
  data: {
    // ... data to create a Character
  }
})

Input

Name Type Required
data CharacterCreateInput | CharacterUncheckedCreateInput Yes

Output

Type: Character
Required: Yes
List: No

delete

Delete one Character

// Delete one Character
const Character = await prisma.character.delete({
  where: {
    // ... filter to delete one Character
  }
})

Input

Name Type Required
where CharacterWhereUniqueInput Yes

Output

Type: Character
Required: No
List: No

update

Update one Character

// Update one Character
const character = await prisma.character.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CharacterUpdateInput | CharacterUncheckedUpdateInput Yes
where CharacterWhereUniqueInput Yes

Output

Type: Character
Required: No
List: No

deleteMany

Delete zero or more Character

// Delete a few Character
const { count } = await prisma.character.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CharacterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Character

const { count } = await prisma.character.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CharacterUpdateManyMutationInput | CharacterUncheckedUpdateManyInput Yes
where CharacterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Character

// Update or create a Character
const character = await prisma.character.upsert({
  create: {
    // ... data to create a Character
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Character we want to update
  }
})

Input

Name Type Required
where CharacterWhereUniqueInput Yes
create CharacterCreateInput | CharacterUncheckedCreateInput Yes
update CharacterUpdateInput | CharacterUncheckedUpdateInput Yes

Output

Type: Character
Required: Yes
List: No

Chapter

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
active Boolean
  • @default(true)
Yes -
content String
  • @default()
Yes -
words Int
  • @default(0)
Yes -
characters Character[]
  • -
Yes -
bookId String
  • -
Yes -
book Book
  • -
Yes -
galleryId String?
  • @unique
No -

Operations

findUnique

Find zero or one Chapter

// Get one Chapter
const chapter = await prisma.chapter.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChapterWhereUniqueInput Yes

Output

Type: Chapter
Required: No
List: No

findFirst

Find first Chapter

// Get one Chapter
const chapter = await prisma.chapter.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChapterWhereInput No
orderBy ChapterOrderByWithRelationInput[] | ChapterOrderByWithRelationInput No
cursor ChapterWhereUniqueInput No
take Int No
skip Int No
distinct ChapterScalarFieldEnum[] No

Output

Type: Chapter
Required: No
List: No

findMany

Find zero or more Chapter

// Get all Chapter
const Chapter = await prisma.chapter.findMany()
// Get first 10 Chapter
const Chapter = await prisma.chapter.findMany({ take: 10 })

Input

Name Type Required
where ChapterWhereInput No
orderBy ChapterOrderByWithRelationInput[] | ChapterOrderByWithRelationInput No
cursor ChapterWhereUniqueInput No
take Int No
skip Int No
distinct ChapterScalarFieldEnum[] No

Output

Type: Chapter
Required: Yes
List: Yes

create

Create one Chapter

// Create one Chapter
const Chapter = await prisma.chapter.create({
  data: {
    // ... data to create a Chapter
  }
})

Input

Name Type Required
data ChapterCreateInput | ChapterUncheckedCreateInput Yes

Output

Type: Chapter
Required: Yes
List: No

delete

Delete one Chapter

// Delete one Chapter
const Chapter = await prisma.chapter.delete({
  where: {
    // ... filter to delete one Chapter
  }
})

Input

Name Type Required
where ChapterWhereUniqueInput Yes

Output

Type: Chapter
Required: No
List: No

update

Update one Chapter

// Update one Chapter
const chapter = await prisma.chapter.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChapterUpdateInput | ChapterUncheckedUpdateInput Yes
where ChapterWhereUniqueInput Yes

Output

Type: Chapter
Required: No
List: No

deleteMany

Delete zero or more Chapter

// Delete a few Chapter
const { count } = await prisma.chapter.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ChapterWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Chapter

const { count } = await prisma.chapter.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ChapterUpdateManyMutationInput | ChapterUncheckedUpdateManyInput Yes
where ChapterWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Chapter

// Update or create a Chapter
const chapter = await prisma.chapter.upsert({
  create: {
    // ... data to create a Chapter
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Chapter we want to update
  }
})

Input

Name Type Required
where ChapterWhereUniqueInput Yes
create ChapterCreateInput | ChapterUncheckedCreateInput Yes
update ChapterUpdateInput | ChapterUncheckedUpdateInput Yes

Output

Type: Chapter
Required: Yes
List: No

Block

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
createdAt DateTime
  • @default(now())
Yes -
updatedAt DateTime
  • @default(now())
Yes -
entity Entity?
  • -
No -
entityId String?
  • -
No -
blockedId String
  • -
Yes -
galleryId String?
  • -
No -
threadId String?
  • -
No -
userId String
  • -
Yes -
blockedUser User
  • -
Yes -
blockedGallery Gallery?
  • -
No -
blockedThread CommentThread?
  • -
No -
user User
  • -
Yes -

Operations

findUnique

Find zero or one Block

// Get one Block
const block = await prisma.block.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlockWhereUniqueInput Yes

Output

Type: Block
Required: No
List: No

findFirst

Find first Block

// Get one Block
const block = await prisma.block.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlockWhereInput No
orderBy BlockOrderByWithRelationInput[] | BlockOrderByWithRelationInput No
cursor BlockWhereUniqueInput No
take Int No
skip Int No
distinct BlockScalarFieldEnum[] No

Output

Type: Block
Required: No
List: No

findMany

Find zero or more Block

// Get all Block
const Block = await prisma.block.findMany()
// Get first 10 Block
const Block = await prisma.block.findMany({ take: 10 })

Input

Name Type Required
where BlockWhereInput No
orderBy BlockOrderByWithRelationInput[] | BlockOrderByWithRelationInput No
cursor BlockWhereUniqueInput No
take Int No
skip Int No
distinct BlockScalarFieldEnum[] No

Output

Type: Block
Required: Yes
List: Yes

create

Create one Block

// Create one Block
const Block = await prisma.block.create({
  data: {
    // ... data to create a Block
  }
})

Input

Name Type Required
data BlockCreateInput | BlockUncheckedCreateInput Yes

Output

Type: Block
Required: Yes
List: No

delete

Delete one Block

// Delete one Block
const Block = await prisma.block.delete({
  where: {
    // ... filter to delete one Block
  }
})

Input

Name Type Required
where BlockWhereUniqueInput Yes

Output

Type: Block
Required: No
List: No

update

Update one Block

// Update one Block
const block = await prisma.block.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlockUpdateInput | BlockUncheckedUpdateInput Yes
where BlockWhereUniqueInput Yes

Output

Type: Block
Required: No
List: No

deleteMany

Delete zero or more Block

// Delete a few Block
const { count } = await prisma.block.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BlockWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Block

const { count } = await prisma.block.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BlockUpdateManyMutationInput | BlockUncheckedUpdateManyInput Yes
where BlockWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Block

// Update or create a Block
const block = await prisma.block.upsert({
  create: {
    // ... data to create a Block
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Block we want to update
  }
})

Input

Name Type Required
where BlockWhereUniqueInput Yes
create BlockCreateInput | BlockUncheckedCreateInput Yes
update BlockUpdateInput | BlockUncheckedUpdateInput Yes

Output

Type: Block
Required: Yes
List: No

VerificationToken

Name Value
@@unique
  • identifier
  • token
@@index
  • identifier
  • token

Fields

Name Type Attributes Required Comment
identifier String
  • -
Yes -
token String
  • @unique
Yes -
expires DateTime
  • -
Yes -

Operations

findUnique

Find zero or one VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first VerificationToken

// Get one VerificationToken
const verificationToken = await prisma.verificationToken.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more VerificationToken

// Get all VerificationToken
const VerificationToken = await prisma.verificationToken.findMany()
// Get first 10 VerificationToken
const VerificationToken = await prisma.verificationToken.findMany({ take: 10 })

Input

Name Type Required
where VerificationTokenWhereInput No
orderBy VerificationTokenOrderByWithRelationInput[] | VerificationTokenOrderByWithRelationInput No
cursor VerificationTokenWhereUniqueInput No
take Int No
skip Int No
distinct VerificationTokenScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one VerificationToken

// Create one VerificationToken
const VerificationToken = await prisma.verificationToken.create({
  data: {
    // ... data to create a VerificationToken
  }
})

Input

Name Type Required
data VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one VerificationToken

// Delete one VerificationToken
const VerificationToken = await prisma.verificationToken.delete({
  where: {
    // ... filter to delete one VerificationToken
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one VerificationToken

// Update one VerificationToken
const verificationToken = await prisma.verificationToken.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes
where VerificationTokenWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more VerificationToken

// Delete a few VerificationToken
const { count } = await prisma.verificationToken.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one VerificationToken

const { count } = await prisma.verificationToken.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data VerificationTokenUpdateManyMutationInput | VerificationTokenUncheckedUpdateManyInput Yes
where VerificationTokenWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one VerificationToken

// Update or create a VerificationToken
const verificationToken = await prisma.verificationToken.upsert({
  create: {
    // ... data to create a VerificationToken
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the VerificationToken we want to update
  }
})

Input

Name Type Required
where VerificationTokenWhereUniqueInput Yes
create VerificationTokenCreateInput | VerificationTokenUncheckedCreateInput Yes
update VerificationTokenUpdateInput | VerificationTokenUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Account

Name Value
@@unique
  • provider
  • providerAccountId
@@index
  • provider
  • providerAccountId

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
userId String
  • -
Yes -
type String
  • -
Yes -
provider String
  • -
Yes -
providerAccountId String
  • -
Yes -
refresh_token String?
  • -
No -
access_token String?
  • -
No -
expires_at Int?
  • -
No -
token_type String?
  • -
No -
scope String?
  • -
No -
id_token String?
  • -
No -
session_state String?
  • -
No -
oauth_token_secret String?
  • -
No -
oauth_token String?
  • -
No -
user User
  • -
Yes -

Operations

findUnique

Find zero or one Account

// Get one Account
const account = await prisma.account.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

findFirst

Find first Account

// Get one Account
const account = await prisma.account.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum[] No

Output

Type: Account
Required: No
List: No

findMany

Find zero or more Account

// Get all Account
const Account = await prisma.account.findMany()
// Get first 10 Account
const Account = await prisma.account.findMany({ take: 10 })

Input

Name Type Required
where AccountWhereInput No
orderBy AccountOrderByWithRelationInput[] | AccountOrderByWithRelationInput No
cursor AccountWhereUniqueInput No
take Int No
skip Int No
distinct AccountScalarFieldEnum[] No

Output

Type: Account
Required: Yes
List: Yes

create

Create one Account

// Create one Account
const Account = await prisma.account.create({
  data: {
    // ... data to create a Account
  }
})

Input

Name Type Required
data AccountCreateInput | AccountUncheckedCreateInput Yes

Output

Type: Account
Required: Yes
List: No

delete

Delete one Account

// Delete one Account
const Account = await prisma.account.delete({
  where: {
    // ... filter to delete one Account
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

update

Update one Account

// Update one Account
const account = await prisma.account.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateInput | AccountUncheckedUpdateInput Yes
where AccountWhereUniqueInput Yes

Output

Type: Account
Required: No
List: No

deleteMany

Delete zero or more Account

// Delete a few Account
const { count } = await prisma.account.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AccountWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Account

const { count } = await prisma.account.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyInput Yes
where AccountWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Account

// Update or create a Account
const account = await prisma.account.upsert({
  create: {
    // ... data to create a Account
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Account we want to update
  }
})

Input

Name Type Required
where AccountWhereUniqueInput Yes
create AccountCreateInput | AccountUncheckedCreateInput Yes
update AccountUpdateInput | AccountUncheckedUpdateInput Yes

Output

Type: Account
Required: Yes
List: No

Session

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(cuid())
Yes -
sessionToken String
  • @unique
Yes -
userId String
  • -
Yes -
expires DateTime
  • -
Yes -
user User
  • -
Yes -

Operations

findUnique

Find zero or one Session

// Get one Session
const session = await prisma.session.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

findFirst

Find first Session

// Get one Session
const session = await prisma.session.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum[] No

Output

Type: Session
Required: No
List: No

findMany

Find zero or more Session

// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum[] No

Output

Type: Session
Required: Yes
List: Yes

create

Create one Session

// Create one Session
const Session = await prisma.session.create({
  data: {
    // ... data to create a Session
  }
})

Input

Name Type Required
data SessionCreateInput | SessionUncheckedCreateInput Yes

Output

Type: Session
Required: Yes
List: No

delete

Delete one Session

// Delete one Session
const Session = await prisma.session.delete({
  where: {
    // ... filter to delete one Session
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

update

Update one Session

// Update one Session
const session = await prisma.session.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateInput | SessionUncheckedUpdateInput Yes
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

deleteMany

Delete zero or more Session

// Delete a few Session
const { count } = await prisma.session.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Session

const { count } = await prisma.session.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput Yes
where SessionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Session

// Update or create a Session
const session = await prisma.session.upsert({
  create: {
    // ... data to create a Session
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Session we want to update
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes
create SessionCreateInput | SessionUncheckedCreateInput Yes
update SessionUpdateInput | SessionUncheckedUpdateInput Yes

Output

Type: Session
Required: Yes
List: No

Types

Input Types

UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id StringFilter | String No
name StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
image StringNullableFilter | String | Null Yes
membershipId StringNullableFilter | String | Null Yes
accounts AccountListRelationFilter No
blocking BlockListRelationFilter No
blocked BlockListRelationFilter No
chatMessages ChatMessageListRelationFilter No
comments CommentListRelationFilter No
ownedCommunes CommuneListRelationFilter No
communes CommuneUserListRelationFilter No
fanOf FanListRelationFilter No
fans FanListRelationFilter No
follower FollowListRelationFilter No
following FollowListRelationFilter No
galleries GalleryListRelationFilter No
images ImageListRelationFilter No
likes LikeListRelationFilter No
posts PostListRelationFilter No
sessions SessionListRelationFilter No
shares ShareListRelationFilter No
chats ChatRoomListRelationFilter No
membership MembershipRelationFilter | MembershipWhereInput | Null Yes
books BookListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No
membershipId SortOrder No
accounts AccountOrderByRelationAggregateInput No
blocking BlockOrderByRelationAggregateInput No
blocked BlockOrderByRelationAggregateInput No
chatMessages ChatMessageOrderByRelationAggregateInput No
comments CommentOrderByRelationAggregateInput No
ownedCommunes CommuneOrderByRelationAggregateInput No
communes CommuneUserOrderByRelationAggregateInput No
fanOf FanOrderByRelationAggregateInput No
fans FanOrderByRelationAggregateInput No
follower FollowOrderByRelationAggregateInput No
following FollowOrderByRelationAggregateInput No
galleries GalleryOrderByRelationAggregateInput No
images ImageOrderByRelationAggregateInput No
likes LikeOrderByRelationAggregateInput No
posts PostOrderByRelationAggregateInput No
sessions SessionOrderByRelationAggregateInput No
shares ShareOrderByRelationAggregateInput No
chats ChatRoomOrderByRelationAggregateInput No
membership MembershipOrderByWithRelationInput No
books BookOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
id String No
email String No
membershipId String No

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No
membershipId SortOrder No
_count UserCountOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringNullableWithAggregatesFilter | String | Null Yes
email StringNullableWithAggregatesFilter | String | Null Yes
emailVerified DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
image StringNullableWithAggregatesFilter | String | Null Yes
membershipId StringNullableWithAggregatesFilter | String | Null Yes

PostWhereInput

Name Type Nullable
AND PostWhereInput | PostWhereInput[] No
OR PostWhereInput[] No
NOT PostWhereInput | PostWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
content StringNullableFilter | String | Null Yes
shareId StringNullableFilter | String | Null Yes
commentId StringNullableFilter | String | Null Yes
authorId StringFilter | String No
images ImageListRelationFilter No
likes LikeListRelationFilter No
author UserRelationFilter | UserWhereInput No
news NewsRelationFilter | NewsWhereInput | Null Yes
comment PostRelationFilter | PostWhereInput | Null Yes
post_comments PostListRelationFilter No
shares ShareListRelationFilter No

PostOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
content SortOrder No
shareId SortOrder No
commentId SortOrder No
authorId SortOrder No
images ImageOrderByRelationAggregateInput No
likes LikeOrderByRelationAggregateInput No
author UserOrderByWithRelationInput No
news NewsOrderByWithRelationInput No
comment PostOrderByWithRelationInput No
post_comments PostOrderByRelationAggregateInput No
shares ShareOrderByRelationAggregateInput No

PostWhereUniqueInput

Name Type Nullable
id String No

PostOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
content SortOrder No
shareId SortOrder No
commentId SortOrder No
authorId SortOrder No
_count PostCountOrderByAggregateInput No
_max PostMaxOrderByAggregateInput No
_min PostMinOrderByAggregateInput No

PostScalarWhereWithAggregatesInput

Name Type Nullable
AND PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] No
OR PostScalarWhereWithAggregatesInput[] No
NOT PostScalarWhereWithAggregatesInput | PostScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
visible BoolWithAggregatesFilter | Boolean No
content StringNullableWithAggregatesFilter | String | Null Yes
shareId StringNullableWithAggregatesFilter | String | Null Yes
commentId StringNullableWithAggregatesFilter | String | Null Yes
authorId StringWithAggregatesFilter | String No

NewsWhereInput

Name Type Nullable
AND NewsWhereInput | NewsWhereInput[] No
OR NewsWhereInput[] No
NOT NewsWhereInput | NewsWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
title StringFilter | String No
banner StringNullableFilter | String | Null Yes
startDate DateTimeNullableFilter | DateTime | Null Yes
endDate DateTimeNullableFilter | DateTime | Null Yes
postId StringFilter | String No
audience EnumAudienceFilter | Audience No
views IntFilter | Int No
priority IntFilter | Int No
post PostRelationFilter | PostWhereInput No

NewsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
banner SortOrder No
startDate SortOrder No
endDate SortOrder No
postId SortOrder No
audience SortOrder No
views SortOrder No
priority SortOrder No
post PostOrderByWithRelationInput No

NewsWhereUniqueInput

Name Type Nullable
id String No
postId String No

NewsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
banner SortOrder No
startDate SortOrder No
endDate SortOrder No
postId SortOrder No
audience SortOrder No
views SortOrder No
priority SortOrder No
_count NewsCountOrderByAggregateInput No
_avg NewsAvgOrderByAggregateInput No
_max NewsMaxOrderByAggregateInput No
_min NewsMinOrderByAggregateInput No
_sum NewsSumOrderByAggregateInput No

NewsScalarWhereWithAggregatesInput

Name Type Nullable
AND NewsScalarWhereWithAggregatesInput | NewsScalarWhereWithAggregatesInput[] No
OR NewsScalarWhereWithAggregatesInput[] No
NOT NewsScalarWhereWithAggregatesInput | NewsScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
visible BoolWithAggregatesFilter | Boolean No
title StringWithAggregatesFilter | String No
banner StringNullableWithAggregatesFilter | String | Null Yes
startDate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
endDate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
postId StringWithAggregatesFilter | String No
audience EnumAudienceWithAggregatesFilter | Audience No
views IntWithAggregatesFilter | Int No
priority IntWithAggregatesFilter | Int No

GalleryWhereInput

Name Type Nullable
AND GalleryWhereInput | GalleryWhereInput[] No
OR GalleryWhereInput[] No
NOT GalleryWhereInput | GalleryWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
title StringNullableFilter | String | Null Yes
description StringNullableFilter | String | Null Yes
authorId StringFilter | String No
shareId StringNullableFilter | String | Null Yes
blocking BlockListRelationFilter No
commune CommuneRelationFilter | CommuneWhereInput | Null Yes
author UserRelationFilter | UserWhereInput No
images ImageListRelationFilter No
likes LikeListRelationFilter No
shares ShareListRelationFilter No
book_gallery BookRelationFilter | BookWhereInput | Null Yes
character_gallery CharacterRelationFilter | CharacterWhereInput | Null Yes
chapter_gallery ChapterRelationFilter | ChapterWhereInput | Null Yes

GalleryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
description SortOrder No
authorId SortOrder No
shareId SortOrder No
blocking BlockOrderByRelationAggregateInput No
commune CommuneOrderByWithRelationInput No
author UserOrderByWithRelationInput No
images ImageOrderByRelationAggregateInput No
likes LikeOrderByRelationAggregateInput No
shares ShareOrderByRelationAggregateInput No
book_gallery BookOrderByWithRelationInput No
character_gallery CharacterOrderByWithRelationInput No
chapter_gallery ChapterOrderByWithRelationInput No

GalleryWhereUniqueInput

Name Type Nullable
id String No

GalleryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
description SortOrder No
authorId SortOrder No
shareId SortOrder No
_count GalleryCountOrderByAggregateInput No
_max GalleryMaxOrderByAggregateInput No
_min GalleryMinOrderByAggregateInput No

GalleryScalarWhereWithAggregatesInput

Name Type Nullable
AND GalleryScalarWhereWithAggregatesInput | GalleryScalarWhereWithAggregatesInput[] No
OR GalleryScalarWhereWithAggregatesInput[] No
NOT GalleryScalarWhereWithAggregatesInput | GalleryScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
visible BoolWithAggregatesFilter | Boolean No
title StringNullableWithAggregatesFilter | String | Null Yes
description StringNullableWithAggregatesFilter | String | Null Yes
authorId StringWithAggregatesFilter | String No
shareId StringNullableWithAggregatesFilter | String | Null Yes

ImageWhereInput

Name Type Nullable
AND ImageWhereInput | ImageWhereInput[] No
OR ImageWhereInput[] No
NOT ImageWhereInput | ImageWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
title StringNullableFilter | String | Null Yes
authorId StringFilter | String No
galleryId StringNullableFilter | String | Null Yes
shareId StringNullableFilter | String | Null Yes
url StringFilter | String No
postId StringNullableFilter | String | Null Yes
height IntNullableFilter | Int | Null Yes
width IntNullableFilter | Int | Null Yes
author UserRelationFilter | UserWhereInput No
gallery GalleryRelationFilter | GalleryWhereInput | Null Yes
post PostRelationFilter | PostWhereInput | Null Yes
likes LikeListRelationFilter No
shares ShareListRelationFilter No

ImageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
authorId SortOrder No
galleryId SortOrder No
shareId SortOrder No
url SortOrder No
postId SortOrder No
height SortOrder No
width SortOrder No
author UserOrderByWithRelationInput No
gallery GalleryOrderByWithRelationInput No
post PostOrderByWithRelationInput No
likes LikeOrderByRelationAggregateInput No
shares ShareOrderByRelationAggregateInput No

ImageWhereUniqueInput

Name Type Nullable
id String No

ImageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
authorId SortOrder No
galleryId SortOrder No
shareId SortOrder No
url SortOrder No
postId SortOrder No
height SortOrder No
width SortOrder No
_count ImageCountOrderByAggregateInput No
_avg ImageAvgOrderByAggregateInput No
_max ImageMaxOrderByAggregateInput No
_min ImageMinOrderByAggregateInput No
_sum ImageSumOrderByAggregateInput No

ImageScalarWhereWithAggregatesInput

Name Type Nullable
AND ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] No
OR ImageScalarWhereWithAggregatesInput[] No
NOT ImageScalarWhereWithAggregatesInput | ImageScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
visible BoolWithAggregatesFilter | Boolean No
title StringNullableWithAggregatesFilter | String | Null Yes
authorId StringWithAggregatesFilter | String No
galleryId StringNullableWithAggregatesFilter | String | Null Yes
shareId StringNullableWithAggregatesFilter | String | Null Yes
url StringWithAggregatesFilter | String No
postId StringNullableWithAggregatesFilter | String | Null Yes
height IntNullableWithAggregatesFilter | Int | Null Yes
width IntNullableWithAggregatesFilter | Int | Null Yes

LikeWhereInput

Name Type Nullable
AND LikeWhereInput | LikeWhereInput[] No
OR LikeWhereInput[] No
NOT LikeWhereInput | LikeWhereInput[] No
id StringFilter | String No
authorId StringFilter | String No
postId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
galleryId StringNullableFilter | String | Null Yes
imageId StringNullableFilter | String | Null Yes
commentId StringNullableFilter | String | Null Yes
characterId StringNullableFilter | String | Null Yes
bookId StringNullableFilter | String | Null Yes
author UserRelationFilter | UserWhereInput No
comment CommentRelationFilter | CommentWhereInput | Null Yes
gallery GalleryRelationFilter | GalleryWhereInput | Null Yes
image ImageRelationFilter | ImageWhereInput | Null Yes
post PostRelationFilter | PostWhereInput | Null Yes
character CharacterRelationFilter | CharacterWhereInput | Null Yes
book BookRelationFilter | BookWhereInput | Null Yes

LikeOrderByWithRelationInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
postId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
galleryId SortOrder No
imageId SortOrder No
commentId SortOrder No
characterId SortOrder No
bookId SortOrder No
author UserOrderByWithRelationInput No
comment CommentOrderByWithRelationInput No
gallery GalleryOrderByWithRelationInput No
image ImageOrderByWithRelationInput No
post PostOrderByWithRelationInput No
character CharacterOrderByWithRelationInput No
book BookOrderByWithRelationInput No

LikeWhereUniqueInput

Name Type Nullable
id String No

LikeOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
postId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
galleryId SortOrder No
imageId SortOrder No
commentId SortOrder No
characterId SortOrder No
bookId SortOrder No
_count LikeCountOrderByAggregateInput No
_max LikeMaxOrderByAggregateInput No
_min LikeMinOrderByAggregateInput No

LikeScalarWhereWithAggregatesInput

Name Type Nullable
AND LikeScalarWhereWithAggregatesInput | LikeScalarWhereWithAggregatesInput[] No
OR LikeScalarWhereWithAggregatesInput[] No
NOT LikeScalarWhereWithAggregatesInput | LikeScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
authorId StringWithAggregatesFilter | String No
postId StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
galleryId StringNullableWithAggregatesFilter | String | Null Yes
imageId StringNullableWithAggregatesFilter | String | Null Yes
commentId StringNullableWithAggregatesFilter | String | Null Yes
characterId StringNullableWithAggregatesFilter | String | Null Yes
bookId StringNullableWithAggregatesFilter | String | Null Yes

ShareWhereInput

Name Type Nullable
AND ShareWhereInput | ShareWhereInput[] No
OR ShareWhereInput[] No
NOT ShareWhereInput | ShareWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
authorId StringFilter | String No
postId StringNullableFilter | String | Null Yes
galleryId StringNullableFilter | String | Null Yes
imageId StringNullableFilter | String | Null Yes
author UserRelationFilter | UserWhereInput No
gallery GalleryRelationFilter | GalleryWhereInput | Null Yes
image ImageRelationFilter | ImageWhereInput | Null Yes
post PostRelationFilter | PostWhereInput | Null Yes

ShareOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
authorId SortOrder No
postId SortOrder No
galleryId SortOrder No
imageId SortOrder No
author UserOrderByWithRelationInput No
gallery GalleryOrderByWithRelationInput No
image ImageOrderByWithRelationInput No
post PostOrderByWithRelationInput No

ShareWhereUniqueInput

Name Type Nullable
id String No

ShareOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
authorId SortOrder No
postId SortOrder No
galleryId SortOrder No
imageId SortOrder No
_count ShareCountOrderByAggregateInput No
_max ShareMaxOrderByAggregateInput No
_min ShareMinOrderByAggregateInput No

ShareScalarWhereWithAggregatesInput

Name Type Nullable
AND ShareScalarWhereWithAggregatesInput | ShareScalarWhereWithAggregatesInput[] No
OR ShareScalarWhereWithAggregatesInput[] No
NOT ShareScalarWhereWithAggregatesInput | ShareScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
visible BoolWithAggregatesFilter | Boolean No
authorId StringWithAggregatesFilter | String No
postId StringNullableWithAggregatesFilter | String | Null Yes
galleryId StringNullableWithAggregatesFilter | String | Null Yes
imageId StringNullableWithAggregatesFilter | String | Null Yes

FollowWhereInput

Name Type Nullable
AND FollowWhereInput | FollowWhereInput[] No
OR FollowWhereInput[] No
NOT FollowWhereInput | FollowWhereInput[] No
id StringFilter | String No
followerId StringFilter | String No
followingId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
characterId StringNullableFilter | String | Null Yes
bookId StringNullableFilter | String | Null Yes
follower UserRelationFilter | UserWhereInput No
following UserRelationFilter | UserWhereInput | Null Yes
character CharacterRelationFilter | CharacterWhereInput | Null Yes
book BookRelationFilter | BookWhereInput | Null Yes

FollowOrderByWithRelationInput

Name Type Nullable
id SortOrder No
followerId SortOrder No
followingId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
characterId SortOrder No
bookId SortOrder No
follower UserOrderByWithRelationInput No
following UserOrderByWithRelationInput No
character CharacterOrderByWithRelationInput No
book BookOrderByWithRelationInput No

FollowWhereUniqueInput

Name Type Nullable
id String No

FollowOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
followerId SortOrder No
followingId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
characterId SortOrder No
bookId SortOrder No
_count FollowCountOrderByAggregateInput No
_max FollowMaxOrderByAggregateInput No
_min FollowMinOrderByAggregateInput No

FollowScalarWhereWithAggregatesInput

Name Type Nullable
AND FollowScalarWhereWithAggregatesInput | FollowScalarWhereWithAggregatesInput[] No
OR FollowScalarWhereWithAggregatesInput[] No
NOT FollowScalarWhereWithAggregatesInput | FollowScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
followerId StringWithAggregatesFilter | String No
followingId StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
characterId StringNullableWithAggregatesFilter | String | Null Yes
bookId StringNullableWithAggregatesFilter | String | Null Yes

FanWhereInput

Name Type Nullable
AND FanWhereInput | FanWhereInput[] No
OR FanWhereInput[] No
NOT FanWhereInput | FanWhereInput[] No
id StringFilter | String No
fanId StringFilter | String No
fanOfId StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
fan UserRelationFilter | UserWhereInput No
fanOf UserRelationFilter | UserWhereInput No

FanOrderByWithRelationInput

Name Type Nullable
id SortOrder No
fanId SortOrder No
fanOfId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
fan UserOrderByWithRelationInput No
fanOf UserOrderByWithRelationInput No

FanWhereUniqueInput

Name Type Nullable
id String No

FanOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
fanId SortOrder No
fanOfId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
_count FanCountOrderByAggregateInput No
_max FanMaxOrderByAggregateInput No
_min FanMinOrderByAggregateInput No


ChatRoomWhereInput

Name Type Nullable
AND ChatRoomWhereInput | ChatRoomWhereInput[] No
OR ChatRoomWhereInput[] No
NOT ChatRoomWhereInput | ChatRoomWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
party StringFilter | String No
messages ChatMessageListRelationFilter No
users UserListRelationFilter No

ChatRoomOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
party SortOrder No
messages ChatMessageOrderByRelationAggregateInput No
users UserOrderByRelationAggregateInput No

ChatRoomWhereUniqueInput

Name Type Nullable
id String No
party String No

ChatRoomOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
party SortOrder No
_count ChatRoomCountOrderByAggregateInput No
_max ChatRoomMaxOrderByAggregateInput No
_min ChatRoomMinOrderByAggregateInput No


ChatMessageWhereInput

Name Type Nullable
AND ChatMessageWhereInput | ChatMessageWhereInput[] No
OR ChatMessageWhereInput[] No
NOT ChatMessageWhereInput | ChatMessageWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
seen BoolFilter | Boolean No
chatRoomId StringFilter | String No
authorId StringFilter | String No
content StringFilter | String No
author UserRelationFilter | UserWhereInput No
chatRoom ChatRoomRelationFilter | ChatRoomWhereInput No

ChatMessageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
seen SortOrder No
chatRoomId SortOrder No
authorId SortOrder No
content SortOrder No
author UserOrderByWithRelationInput No
chatRoom ChatRoomOrderByWithRelationInput No

ChatMessageWhereUniqueInput

Name Type Nullable
id String No

ChatMessageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
seen SortOrder No
chatRoomId SortOrder No
authorId SortOrder No
content SortOrder No
_count ChatMessageCountOrderByAggregateInput No
_max ChatMessageMaxOrderByAggregateInput No
_min ChatMessageMinOrderByAggregateInput No


CommentThreadWhereInput

Name Type Nullable
AND CommentThreadWhereInput | CommentThreadWhereInput[] No
OR CommentThreadWhereInput[] No
NOT CommentThreadWhereInput | CommentThreadWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
entity EnumEntityFilter | Entity No
requiredRole EnumRoleFilter | Role No
blocked BlockListRelationFilter No
comments CommentListRelationFilter No
commune CommuneRelationFilter | CommuneWhereInput | Null Yes

CommentThreadOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
requiredRole SortOrder No
blocked BlockOrderByRelationAggregateInput No
comments CommentOrderByRelationAggregateInput No
commune CommuneOrderByWithRelationInput No

CommentThreadWhereUniqueInput

Name Type Nullable
id String No

CommentThreadOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
requiredRole SortOrder No
_count CommentThreadCountOrderByAggregateInput No
_max CommentThreadMaxOrderByAggregateInput No
_min CommentThreadMinOrderByAggregateInput No


CommentWhereInput

Name Type Nullable
AND CommentWhereInput | CommentWhereInput[] No
OR CommentWhereInput[] No
NOT CommentWhereInput | CommentWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
threadType EnumEntityFilter | Entity No
threadId StringFilter | String No
authorId StringFilter | String No
content StringFilter | String No
visible BoolFilter | Boolean No
author UserRelationFilter | UserWhereInput No
thread CommentThreadRelationFilter | CommentThreadWhereInput No
likes LikeListRelationFilter No

CommentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
threadType SortOrder No
threadId SortOrder No
authorId SortOrder No
content SortOrder No
visible SortOrder No
author UserOrderByWithRelationInput No
thread CommentThreadOrderByWithRelationInput No
likes LikeOrderByRelationAggregateInput No

CommentWhereUniqueInput

Name Type Nullable
id String No

CommentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
threadType SortOrder No
threadId SortOrder No
authorId SortOrder No
content SortOrder No
visible SortOrder No
_count CommentCountOrderByAggregateInput No
_max CommentMaxOrderByAggregateInput No
_min CommentMinOrderByAggregateInput No


CommuneWhereInput

Name Type Nullable
AND CommuneWhereInput | CommuneWhereInput[] No
OR CommuneWhereInput[] No
NOT CommuneWhereInput | CommuneWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
ownerId StringFilter | String No
entity EnumEntityFilter | Entity No
galleryId StringNullableFilter | String | Null Yes
threadId StringNullableFilter | String | Null Yes
gallery GalleryRelationFilter | GalleryWhereInput | Null Yes
owner UserRelationFilter | UserWhereInput No
thread CommentThreadRelationFilter | CommentThreadWhereInput | Null Yes
users CommuneUserListRelationFilter No

CommuneOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
ownerId SortOrder No
entity SortOrder No
galleryId SortOrder No
threadId SortOrder No
gallery GalleryOrderByWithRelationInput No
owner UserOrderByWithRelationInput No
thread CommentThreadOrderByWithRelationInput No
users CommuneUserOrderByRelationAggregateInput No

CommuneWhereUniqueInput

Name Type Nullable
id String No
galleryId String No
threadId String No

CommuneOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
ownerId SortOrder No
entity SortOrder No
galleryId SortOrder No
threadId SortOrder No
_count CommuneCountOrderByAggregateInput No
_max CommuneMaxOrderByAggregateInput No
_min CommuneMinOrderByAggregateInput No


CommuneUserWhereInput

Name Type Nullable
AND CommuneUserWhereInput | CommuneUserWhereInput[] No
OR CommuneUserWhereInput[] No
NOT CommuneUserWhereInput | CommuneUserWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
communeId StringFilter | String No
userId StringFilter | String No
role EnumRoleFilter | Role No
commune CommuneRelationFilter | CommuneWhereInput No
user UserRelationFilter | UserWhereInput No

CommuneUserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
communeId SortOrder No
userId SortOrder No
role SortOrder No
commune CommuneOrderByWithRelationInput No
user UserOrderByWithRelationInput No

CommuneUserWhereUniqueInput

Name Type Nullable
id String No

CommuneUserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
communeId SortOrder No
userId SortOrder No
role SortOrder No
_count CommuneUserCountOrderByAggregateInput No
_max CommuneUserMaxOrderByAggregateInput No
_min CommuneUserMinOrderByAggregateInput No


MembershipWhereInput

Name Type Nullable
AND MembershipWhereInput | MembershipWhereInput[] No
OR MembershipWhereInput[] No
NOT MembershipWhereInput | MembershipWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
active BoolFilter | Boolean No
level EnumAudienceNullableFilter | Audience | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes

MembershipOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
level SortOrder No
user UserOrderByWithRelationInput No

MembershipWhereUniqueInput

Name Type Nullable
id String No

MembershipOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
level SortOrder No
_count MembershipCountOrderByAggregateInput No
_max MembershipMaxOrderByAggregateInput No
_min MembershipMinOrderByAggregateInput No


GenreWhereInput

Name Type Nullable
AND GenreWhereInput | GenreWhereInput[] No
OR GenreWhereInput[] No
NOT GenreWhereInput | GenreWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
title StringFilter | String No
description StringFilter | String No
fiction BoolFilter | Boolean No
books BookListRelationFilter No
covers CoversListRelationFilter No

GenreOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No
fiction SortOrder No
books BookOrderByRelationAggregateInput No
covers CoversOrderByRelationAggregateInput No

GenreWhereUniqueInput

Name Type Nullable
id String No
title String No

GenreOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No
fiction SortOrder No
_count GenreCountOrderByAggregateInput No
_max GenreMaxOrderByAggregateInput No
_min GenreMinOrderByAggregateInput No


CoversWhereInput

Name Type Nullable
AND CoversWhereInput | CoversWhereInput[] No
OR CoversWhereInput[] No
NOT CoversWhereInput | CoversWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
url StringFilter | String No
genreId StringFilter | String No
genre GenreRelationFilter | GenreWhereInput No

CoversOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
url SortOrder No
genreId SortOrder No
genre GenreOrderByWithRelationInput No

CoversWhereUniqueInput

Name Type Nullable
id String No

CoversOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
url SortOrder No
genreId SortOrder No
_count CoversCountOrderByAggregateInput No
_max CoversMaxOrderByAggregateInput No
_min CoversMinOrderByAggregateInput No


BookCategoryWhereInput

Name Type Nullable
AND BookCategoryWhereInput | BookCategoryWhereInput[] No
OR BookCategoryWhereInput[] No
NOT BookCategoryWhereInput | BookCategoryWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
title StringFilter | String No
description StringFilter | String No
books BookListRelationFilter No

BookCategoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No
books BookOrderByRelationAggregateInput No

BookCategoryWhereUniqueInput

Name Type Nullable
id String No

BookCategoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No
_count BookCategoryCountOrderByAggregateInput No
_max BookCategoryMaxOrderByAggregateInput No
_min BookCategoryMinOrderByAggregateInput No


BookWhereInput

Name Type Nullable
AND BookWhereInput | BookWhereInput[] No
OR BookWhereInput[] No
NOT BookWhereInput | BookWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
active BoolFilter | Boolean No
status EnumBookStatusNullableFilter | BookStatus | Null Yes
prospect BoolFilter | Boolean No
title StringFilter | String No
cover StringFilter | String No
genreId StringFilter | String No
hook StringNullableFilter | String | Null Yes
synopsis StringNullableFilter | String | Null Yes
back StringNullableFilter | String | Null Yes
words IntFilter | Int No
galleryId StringNullableFilter | String | Null Yes
genre GenreRelationFilter | GenreWhereInput No
categories BookCategoryListRelationFilter No
authors UserListRelationFilter No
chapters ChapterListRelationFilter No
characters CharacterListRelationFilter No
gallery GalleryRelationFilter | GalleryWhereInput | Null Yes
fans FollowListRelationFilter No
likes LikeListRelationFilter No

BookOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
status SortOrder No
prospect SortOrder No
title SortOrder No
cover SortOrder No
genreId SortOrder No
hook SortOrder No
synopsis SortOrder No
back SortOrder No
words SortOrder No
galleryId SortOrder No
genre GenreOrderByWithRelationInput No
categories BookCategoryOrderByRelationAggregateInput No
authors UserOrderByRelationAggregateInput No
chapters ChapterOrderByRelationAggregateInput No
characters CharacterOrderByRelationAggregateInput No
gallery GalleryOrderByWithRelationInput No
fans FollowOrderByRelationAggregateInput No
likes LikeOrderByRelationAggregateInput No

BookWhereUniqueInput

Name Type Nullable
id String No
galleryId String No

BookOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
status SortOrder No
prospect SortOrder No
title SortOrder No
cover SortOrder No
genreId SortOrder No
hook SortOrder No
synopsis SortOrder No
back SortOrder No
words SortOrder No
galleryId SortOrder No
_count BookCountOrderByAggregateInput No
_avg BookAvgOrderByAggregateInput No
_max BookMaxOrderByAggregateInput No
_min BookMinOrderByAggregateInput No
_sum BookSumOrderByAggregateInput No

BookScalarWhereWithAggregatesInput

Name Type Nullable
AND BookScalarWhereWithAggregatesInput | BookScalarWhereWithAggregatesInput[] No
OR BookScalarWhereWithAggregatesInput[] No
NOT BookScalarWhereWithAggregatesInput | BookScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
active BoolWithAggregatesFilter | Boolean No
status EnumBookStatusNullableWithAggregatesFilter | BookStatus | Null Yes
prospect BoolWithAggregatesFilter | Boolean No
title StringWithAggregatesFilter | String No
cover StringWithAggregatesFilter | String No
genreId StringWithAggregatesFilter | String No
hook StringNullableWithAggregatesFilter | String | Null Yes
synopsis StringNullableWithAggregatesFilter | String | Null Yes
back StringNullableWithAggregatesFilter | String | Null Yes
words IntWithAggregatesFilter | Int No
galleryId StringNullableWithAggregatesFilter | String | Null Yes

CharacterWhereInput

Name Type Nullable
AND CharacterWhereInput | CharacterWhereInput[] No
OR CharacterWhereInput[] No
NOT CharacterWhereInput | CharacterWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
active BoolFilter | Boolean No
name StringFilter | String No
familyName StringFilter | String No
givenName StringFilter | String No
middleName StringFilter | String No
thumbnail StringFilter | String No
age StringFilter | String No
role StringFilter | String No
description StringFilter | String No
backstory StringFilter | String No
title StringFilter | String No
archetype StringFilter | String No
galleryId StringNullableFilter | String | Null Yes
likes LikeListRelationFilter No
fans FollowListRelationFilter No
books BookListRelationFilter No
chapters ChapterListRelationFilter No
gallery GalleryRelationFilter | GalleryWhereInput | Null Yes

CharacterOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
name SortOrder No
familyName SortOrder No
givenName SortOrder No
middleName SortOrder No
thumbnail SortOrder No
age SortOrder No
role SortOrder No
description SortOrder No
backstory SortOrder No
title SortOrder No
archetype SortOrder No
galleryId SortOrder No
likes LikeOrderByRelationAggregateInput No
fans FollowOrderByRelationAggregateInput No
books BookOrderByRelationAggregateInput No
chapters ChapterOrderByRelationAggregateInput No
gallery GalleryOrderByWithRelationInput No

CharacterWhereUniqueInput

Name Type Nullable
id String No
galleryId String No

CharacterOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
name SortOrder No
familyName SortOrder No
givenName SortOrder No
middleName SortOrder No
thumbnail SortOrder No
age SortOrder No
role SortOrder No
description SortOrder No
backstory SortOrder No
title SortOrder No
archetype SortOrder No
galleryId SortOrder No
_count CharacterCountOrderByAggregateInput No
_max CharacterMaxOrderByAggregateInput No
_min CharacterMinOrderByAggregateInput No

CharacterScalarWhereWithAggregatesInput

Name Type Nullable
AND CharacterScalarWhereWithAggregatesInput | CharacterScalarWhereWithAggregatesInput[] No
OR CharacterScalarWhereWithAggregatesInput[] No
NOT CharacterScalarWhereWithAggregatesInput | CharacterScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
createdAt DateTimeWithAggregatesFilter | DateTime No
updatedAt DateTimeWithAggregatesFilter | DateTime No
active BoolWithAggregatesFilter | Boolean No
name StringWithAggregatesFilter | String No
familyName StringWithAggregatesFilter | String No
givenName StringWithAggregatesFilter | String No
middleName StringWithAggregatesFilter | String No
thumbnail StringWithAggregatesFilter | String No
age StringWithAggregatesFilter | String No
role StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
backstory StringWithAggregatesFilter | String No
title StringWithAggregatesFilter | String No
archetype StringWithAggregatesFilter | String No
galleryId StringNullableWithAggregatesFilter | String | Null Yes

ChapterWhereInput

Name Type Nullable
AND ChapterWhereInput | ChapterWhereInput[] No
OR ChapterWhereInput[] No
NOT ChapterWhereInput | ChapterWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
active BoolFilter | Boolean No
content StringFilter | String No
words IntFilter | Int No
bookId StringFilter | String No
galleryId StringNullableFilter | String | Null Yes
characters CharacterListRelationFilter No
book BookRelationFilter | BookWhereInput No
gallery GalleryRelationFilter | GalleryWhereInput | Null Yes

ChapterOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
content SortOrder No
words SortOrder No
bookId SortOrder No
galleryId SortOrder No
characters CharacterOrderByRelationAggregateInput No
book BookOrderByWithRelationInput No
gallery GalleryOrderByWithRelationInput No

ChapterWhereUniqueInput

Name Type Nullable
id String No
galleryId String No

ChapterOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
content SortOrder No
words SortOrder No
bookId SortOrder No
galleryId SortOrder No
_count ChapterCountOrderByAggregateInput No
_avg ChapterAvgOrderByAggregateInput No
_max ChapterMaxOrderByAggregateInput No
_min ChapterMinOrderByAggregateInput No
_sum ChapterSumOrderByAggregateInput No


BlockWhereInput

Name Type Nullable
AND BlockWhereInput | BlockWhereInput[] No
OR BlockWhereInput[] No
NOT BlockWhereInput | BlockWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
entity EnumEntityNullableFilter | Entity | Null Yes
entityId StringNullableFilter | String | Null Yes
blockedId StringFilter | String No
galleryId StringNullableFilter | String | Null Yes
threadId StringNullableFilter | String | Null Yes
userId StringFilter | String No
blockedUser UserRelationFilter | UserWhereInput No
blockedGallery GalleryRelationFilter | GalleryWhereInput | Null Yes
blockedThread CommentThreadRelationFilter | CommentThreadWhereInput | Null Yes
user UserRelationFilter | UserWhereInput No

BlockOrderByWithRelationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
entityId SortOrder No
blockedId SortOrder No
galleryId SortOrder No
threadId SortOrder No
userId SortOrder No
blockedUser UserOrderByWithRelationInput No
blockedGallery GalleryOrderByWithRelationInput No
blockedThread CommentThreadOrderByWithRelationInput No
user UserOrderByWithRelationInput No

BlockWhereUniqueInput

Name Type Nullable
id String No

BlockOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
entityId SortOrder No
blockedId SortOrder No
galleryId SortOrder No
threadId SortOrder No
userId SortOrder No
_count BlockCountOrderByAggregateInput No
_max BlockMaxOrderByAggregateInput No
_min BlockMinOrderByAggregateInput No


VerificationTokenWhereInput

Name Type Nullable
AND VerificationTokenWhereInput | VerificationTokenWhereInput[] No
OR VerificationTokenWhereInput[] No
NOT VerificationTokenWhereInput | VerificationTokenWhereInput[] No
identifier StringFilter | String No
token StringFilter | String No
expires DateTimeFilter | DateTime No

VerificationTokenOrderByWithRelationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenWhereUniqueInput

Name Type Nullable
token String No
identifier_token VerificationTokenIdentifierTokenCompoundUniqueInput No

VerificationTokenOrderByWithAggregationInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No
_count VerificationTokenCountOrderByAggregateInput No
_max VerificationTokenMaxOrderByAggregateInput No
_min VerificationTokenMinOrderByAggregateInput No


AccountWhereInput

Name Type Nullable
AND AccountWhereInput | AccountWhereInput[] No
OR AccountWhereInput[] No
NOT AccountWhereInput | AccountWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
oauth_token_secret StringNullableFilter | String | Null Yes
oauth_token StringNullableFilter | String | Null Yes
user UserRelationFilter | UserWhereInput No

AccountOrderByWithRelationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
oauth_token_secret SortOrder No
oauth_token SortOrder No
user UserOrderByWithRelationInput No

AccountWhereUniqueInput

Name Type Nullable
id String No
provider_providerAccountId AccountProviderProviderAccountIdCompoundUniqueInput No

AccountOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
oauth_token_secret SortOrder No
oauth_token SortOrder No
_count AccountCountOrderByAggregateInput No
_avg AccountAvgOrderByAggregateInput No
_max AccountMaxOrderByAggregateInput No
_min AccountMinOrderByAggregateInput No
_sum AccountSumOrderByAggregateInput No

AccountScalarWhereWithAggregatesInput

Name Type Nullable
AND AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
OR AccountScalarWhereWithAggregatesInput[] No
NOT AccountScalarWhereWithAggregatesInput | AccountScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
userId StringWithAggregatesFilter | String No
type StringWithAggregatesFilter | String No
provider StringWithAggregatesFilter | String No
providerAccountId StringWithAggregatesFilter | String No
refresh_token StringNullableWithAggregatesFilter | String | Null Yes
access_token StringNullableWithAggregatesFilter | String | Null Yes
expires_at IntNullableWithAggregatesFilter | Int | Null Yes
token_type StringNullableWithAggregatesFilter | String | Null Yes
scope StringNullableWithAggregatesFilter | String | Null Yes
id_token StringNullableWithAggregatesFilter | String | Null Yes
session_state StringNullableWithAggregatesFilter | String | Null Yes
oauth_token_secret StringNullableWithAggregatesFilter | String | Null Yes
oauth_token StringNullableWithAggregatesFilter | String | Null Yes

SessionWhereInput

Name Type Nullable
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
id StringFilter | String No
sessionToken StringFilter | String No
userId StringFilter | String No
expires DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput No

SessionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No
user UserOrderByWithRelationInput No

SessionWhereUniqueInput

Name Type Nullable
id String No
sessionToken String No

SessionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No
_count SessionCountOrderByAggregateInput No
_max SessionMaxOrderByAggregateInput No
_min SessionMinOrderByAggregateInput No


UserCreateInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

UserCreateManyInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes

UserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes

UserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes

PostCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
images ImageCreateNestedManyWithoutPostInput No
likes LikeCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
news NewsCreateNestedOneWithoutPostInput No
comment PostCreateNestedOneWithoutPost_commentsInput No
post_comments PostCreateNestedManyWithoutCommentInput No
shares ShareCreateNestedManyWithoutPostInput No

PostUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
authorId String No
images ImageUncheckedCreateNestedManyWithoutPostInput No
likes LikeUncheckedCreateNestedManyWithoutPostInput No
news NewsUncheckedCreateNestedOneWithoutPostInput No
post_comments PostUncheckedCreateNestedManyWithoutCommentInput No
shares ShareUncheckedCreateNestedManyWithoutPostInput No


PostUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
content String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
images ImageUncheckedUpdateManyWithoutPostNestedInput No
likes LikeUncheckedUpdateManyWithoutPostNestedInput No
news NewsUncheckedUpdateOneWithoutPostNestedInput No
post_comments PostUncheckedUpdateManyWithoutCommentNestedInput No
shares ShareUncheckedUpdateManyWithoutPostNestedInput No

PostCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
authorId String No

PostUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
content String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes

PostUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
content String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No

NewsCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
banner String | Null Yes
startDate DateTime | Null Yes
endDate DateTime | Null Yes
audience Audience No
views Int No
priority Int No
post PostCreateNestedOneWithoutNewsInput No

NewsUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
banner String | Null Yes
startDate DateTime | Null Yes
endDate DateTime | Null Yes
postId String No
audience Audience No
views Int No
priority Int No

NewsUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
audience Audience | EnumAudienceFieldUpdateOperationsInput No
views Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No
post PostUpdateOneRequiredWithoutNewsNestedInput No

NewsUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
postId String | StringFieldUpdateOperationsInput No
audience Audience | EnumAudienceFieldUpdateOperationsInput No
views Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No

NewsCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
banner String | Null Yes
startDate DateTime | Null Yes
endDate DateTime | Null Yes
postId String No
audience Audience No
views Int No
priority Int No

NewsUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
audience Audience | EnumAudienceFieldUpdateOperationsInput No
views Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No

NewsUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
postId String | StringFieldUpdateOperationsInput No
audience Audience | EnumAudienceFieldUpdateOperationsInput No
views Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No

GalleryCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No

GalleryCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes

GalleryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes

GalleryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes

ImageCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes
author UserCreateNestedOneWithoutImagesInput No
gallery GalleryCreateNestedOneWithoutImagesInput No
post PostCreateNestedOneWithoutImagesInput No
likes LikeCreateNestedManyWithoutImageInput No
shares ShareCreateNestedManyWithoutImageInput No

ImageUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
galleryId String | Null Yes
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes
likes LikeUncheckedCreateNestedManyWithoutImageInput No
shares ShareUncheckedCreateNestedManyWithoutImageInput No

ImageUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes
author UserUpdateOneRequiredWithoutImagesNestedInput No
gallery GalleryUpdateOneWithoutImagesNestedInput No
post PostUpdateOneWithoutImagesNestedInput No
likes LikeUpdateManyWithoutImageNestedInput No
shares ShareUpdateManyWithoutImageNestedInput No

ImageUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutImageNestedInput No
shares ShareUncheckedUpdateManyWithoutImageNestedInput No

ImageCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
galleryId String | Null Yes
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes

ImageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes

ImageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes


LikeUncheckedCreateInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes


LikeUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

LikeCreateManyInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

LikeUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

LikeUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

ShareCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
author UserCreateNestedOneWithoutSharesInput No
gallery GalleryCreateNestedOneWithoutSharesInput No
image ImageCreateNestedOneWithoutSharesInput No
post PostCreateNestedOneWithoutSharesInput No

ShareUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String | Null Yes
galleryId String | Null Yes
imageId String | Null Yes


ShareUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes

ShareCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String | Null Yes
galleryId String | Null Yes
imageId String | Null Yes

ShareUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No

ShareUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
follower UserCreateNestedOneWithoutFollowerInput No
following UserCreateNestedOneWithoutFollowingInput No
character CharacterCreateNestedOneWithoutFansInput No
book BookCreateNestedOneWithoutFansInput No

FollowUncheckedCreateInput

Name Type Nullable
id String No
followerId String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes
bookId String | Null Yes


FollowUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowCreateManyInput

Name Type Nullable
id String No
followerId String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes
bookId String | Null Yes

FollowUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FollowUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

FanCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fan UserCreateNestedOneWithoutFanOfInput No
fanOf UserCreateNestedOneWithoutFansInput No

FanUncheckedCreateInput

Name Type Nullable
id String No
fanId String No
fanOfId String No
createdAt DateTime No
updatedAt DateTime No


FanUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
fanId String | StringFieldUpdateOperationsInput No
fanOfId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FanCreateManyInput

Name Type Nullable
id String No
fanId String No
fanOfId String No
createdAt DateTime No
updatedAt DateTime No

FanUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FanUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
fanId String | StringFieldUpdateOperationsInput No
fanOfId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

ChatRoomCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No
messages ChatMessageCreateNestedManyWithoutChatRoomInput No
users UserCreateNestedManyWithoutChatsInput No

ChatRoomUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No
messages ChatMessageUncheckedCreateNestedManyWithoutChatRoomInput No
users UserUncheckedCreateNestedManyWithoutChatsInput No

ChatRoomUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No
messages ChatMessageUpdateManyWithoutChatRoomNestedInput No
users UserUpdateManyWithoutChatsNestedInput No

ChatRoomUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No
messages ChatMessageUncheckedUpdateManyWithoutChatRoomNestedInput No
users UserUncheckedUpdateManyWithoutChatsNestedInput No

ChatRoomCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No

ChatRoomUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No

ChatRoomUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No

ChatMessageCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
content String No
author UserCreateNestedOneWithoutChatMessagesInput No
chatRoom ChatRoomCreateNestedOneWithoutMessagesInput No

ChatMessageUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
chatRoomId String No
authorId String No
content String No


ChatMessageUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
chatRoomId String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No

ChatMessageCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
chatRoomId String No
authorId String No
content String No

ChatMessageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No

ChatMessageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
chatRoomId String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No

CommentThreadCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
blocked BlockCreateNestedManyWithoutBlockedThreadInput No
comments CommentCreateNestedManyWithoutThreadInput No
commune CommuneCreateNestedOneWithoutThreadInput No

CommentThreadUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
blocked BlockUncheckedCreateNestedManyWithoutBlockedThreadInput No
comments CommentUncheckedCreateNestedManyWithoutThreadInput No
commune CommuneUncheckedCreateNestedOneWithoutThreadInput No



CommentThreadCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No

CommentThreadUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No

CommentThreadUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No

CommentCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
content String No
visible Boolean No
author UserCreateNestedOneWithoutCommentsInput No
thread CommentThreadCreateNestedOneWithoutCommentsInput No
likes LikeCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
threadId String No
authorId String No
content String No
visible Boolean No
likes LikeUncheckedCreateNestedManyWithoutCommentInput No


CommentUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
threadId String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
likes LikeUncheckedUpdateManyWithoutCommentNestedInput No

CommentCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
threadId String No
authorId String No
content String No
visible Boolean No

CommentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No

CommentUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
threadId String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No

CommuneCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
gallery GalleryCreateNestedOneWithoutCommuneInput No
owner UserCreateNestedOneWithoutOwnedCommunesInput No
thread CommentThreadCreateNestedOneWithoutCommuneInput No
users CommuneUserCreateNestedManyWithoutCommuneInput No

CommuneUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
ownerId String No
entity Entity No
galleryId String | Null Yes
threadId String | Null Yes
users CommuneUserUncheckedCreateNestedManyWithoutCommuneInput No


CommuneUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
ownerId String | StringFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
users CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput No

CommuneCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
ownerId String No
entity Entity No
galleryId String | Null Yes
threadId String | Null Yes

CommuneUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No

CommuneUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
ownerId String | StringFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes

CommuneUserCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
role Role No
commune CommuneCreateNestedOneWithoutUsersInput No
user UserCreateNestedOneWithoutCommunesInput No

CommuneUserUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
communeId String No
userId String No
role Role No


CommuneUserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
communeId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No

CommuneUserCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
communeId String No
userId String No
role Role No

CommuneUserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No

CommuneUserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
communeId String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No

MembershipCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
level Audience | Null Yes
user UserCreateNestedOneWithoutMembershipInput No

MembershipUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
level Audience | Null Yes
user UserUncheckedCreateNestedOneWithoutMembershipInput No

MembershipUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
level Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutMembershipNestedInput No

MembershipUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
level Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null Yes
user UserUncheckedUpdateOneWithoutMembershipNestedInput No

MembershipCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
level Audience | Null Yes

MembershipUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
level Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null Yes

MembershipUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
level Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null Yes

GenreCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No
books BookCreateNestedManyWithoutGenreInput No
covers CoversCreateNestedManyWithoutGenreInput No

GenreUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No
books BookUncheckedCreateNestedManyWithoutGenreInput No
covers CoversUncheckedCreateNestedManyWithoutGenreInput No

GenreUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No
books BookUpdateManyWithoutGenreNestedInput No
covers CoversUpdateManyWithoutGenreNestedInput No

GenreUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No
books BookUncheckedUpdateManyWithoutGenreNestedInput No
covers CoversUncheckedUpdateManyWithoutGenreNestedInput No

GenreCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No

GenreUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No

GenreUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No

CoversCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No
genre GenreCreateNestedOneWithoutCoversInput No

CoversUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No
genreId String No

CoversUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutCoversNestedInput No

CoversUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No

CoversCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No
genreId String No

CoversUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No

CoversUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No

BookCategoryCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
books BookCreateNestedManyWithoutCategoriesInput No

BookCategoryUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
books BookUncheckedCreateNestedManyWithoutCategoriesInput No

BookCategoryUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
books BookUpdateManyWithoutCategoriesNestedInput No

BookCategoryUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
books BookUncheckedUpdateManyWithoutCategoriesNestedInput No

BookCategoryCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No

BookCategoryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No

BookCategoryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No

BookCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
categories BookCategoryCreateNestedManyWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
characters CharacterCreateNestedManyWithoutBooksInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
fans FollowCreateNestedManyWithoutBookInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
authors UserUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No

BookCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes

BookUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No

BookUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

CharacterCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
likes LikeCreateNestedManyWithoutCharacterInput No
fans FollowCreateNestedManyWithoutCharacterInput No
books BookCreateNestedManyWithoutCharactersInput No
chapters ChapterCreateNestedManyWithoutCharactersInput No
gallery GalleryCreateNestedOneWithoutCharacter_galleryInput No

CharacterUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String | Null Yes
likes LikeUncheckedCreateNestedManyWithoutCharacterInput No
fans FollowUncheckedCreateNestedManyWithoutCharacterInput No
books BookUncheckedCreateNestedManyWithoutCharactersInput No
chapters ChapterUncheckedCreateNestedManyWithoutCharactersInput No

CharacterUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
likes LikeUpdateManyWithoutCharacterNestedInput No
fans FollowUpdateManyWithoutCharacterNestedInput No
books BookUpdateManyWithoutCharactersNestedInput No
chapters ChapterUpdateManyWithoutCharactersNestedInput No
gallery GalleryUpdateOneWithoutCharacter_galleryNestedInput No

CharacterUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutCharacterNestedInput No
fans FollowUncheckedUpdateManyWithoutCharacterNestedInput No
books BookUncheckedUpdateManyWithoutCharactersNestedInput No
chapters ChapterUncheckedUpdateManyWithoutCharactersNestedInput No

CharacterCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String | Null Yes

CharacterUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No

CharacterUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

ChapterCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
characters CharacterCreateNestedManyWithoutChaptersInput No
book BookCreateNestedOneWithoutChaptersInput No
gallery GalleryCreateNestedOneWithoutChapter_galleryInput No

ChapterUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
bookId String No
galleryId String | Null Yes
characters CharacterUncheckedCreateNestedManyWithoutChaptersInput No


ChapterUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
bookId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
characters CharacterUncheckedUpdateManyWithoutChaptersNestedInput No

ChapterCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
bookId String No
galleryId String | Null Yes

ChapterUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No

ChapterUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
bookId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

BlockCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedUser UserCreateNestedOneWithoutBlockingInput No
blockedGallery GalleryCreateNestedOneWithoutBlockingInput No
blockedThread CommentThreadCreateNestedOneWithoutBlockedInput No
user UserCreateNestedOneWithoutBlockedInput No

BlockUncheckedCreateInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
galleryId String | Null Yes
threadId String | Null Yes
userId String No


BlockUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No

BlockCreateManyInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
galleryId String | Null Yes
threadId String | Null Yes
userId String No

BlockUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes

BlockUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No

VerificationTokenCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUncheckedCreateInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenCreateManyInput

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenUpdateManyMutationInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

VerificationTokenUncheckedUpdateManyInput

Name Type Nullable
identifier String | StringFieldUpdateOperationsInput No
token String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

AccountCreateInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
oauth_token_secret String | Null Yes
oauth_token String | Null Yes
user UserCreateNestedOneWithoutAccountsInput No

AccountUncheckedCreateInput

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
oauth_token_secret String | Null Yes
oauth_token String | Null Yes

AccountUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateOneRequiredWithoutAccountsNestedInput No

AccountUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountCreateManyInput

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
oauth_token_secret String | Null Yes
oauth_token String | Null Yes

AccountUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes

SessionCreateInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No
user UserCreateNestedOneWithoutSessionsInput No

SessionUncheckedCreateInput

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No

SessionUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutSessionsNestedInput No

SessionUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionCreateManyInput

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No

SessionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

StringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringFilter No

StringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

DateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

AccountListRelationFilter

Name Type Nullable
every AccountWhereInput No
some AccountWhereInput No
none AccountWhereInput No

BlockListRelationFilter

Name Type Nullable
every BlockWhereInput No
some BlockWhereInput No
none BlockWhereInput No

ChatMessageListRelationFilter

Name Type Nullable
every ChatMessageWhereInput No
some ChatMessageWhereInput No
none ChatMessageWhereInput No

CommentListRelationFilter

Name Type Nullable
every CommentWhereInput No
some CommentWhereInput No
none CommentWhereInput No

CommuneListRelationFilter

Name Type Nullable
every CommuneWhereInput No
some CommuneWhereInput No
none CommuneWhereInput No

CommuneUserListRelationFilter

Name Type Nullable
every CommuneUserWhereInput No
some CommuneUserWhereInput No
none CommuneUserWhereInput No

FanListRelationFilter

Name Type Nullable
every FanWhereInput No
some FanWhereInput No
none FanWhereInput No

FollowListRelationFilter

Name Type Nullable
every FollowWhereInput No
some FollowWhereInput No
none FollowWhereInput No

GalleryListRelationFilter

Name Type Nullable
every GalleryWhereInput No
some GalleryWhereInput No
none GalleryWhereInput No

ImageListRelationFilter

Name Type Nullable
every ImageWhereInput No
some ImageWhereInput No
none ImageWhereInput No

LikeListRelationFilter

Name Type Nullable
every LikeWhereInput No
some LikeWhereInput No
none LikeWhereInput No

PostListRelationFilter

Name Type Nullable
every PostWhereInput No
some PostWhereInput No
none PostWhereInput No

SessionListRelationFilter

Name Type Nullable
every SessionWhereInput No
some SessionWhereInput No
none SessionWhereInput No

ShareListRelationFilter

Name Type Nullable
every ShareWhereInput No
some ShareWhereInput No
none ShareWhereInput No

ChatRoomListRelationFilter

Name Type Nullable
every ChatRoomWhereInput No
some ChatRoomWhereInput No
none ChatRoomWhereInput No

MembershipRelationFilter

Name Type Nullable
is MembershipWhereInput | Null Yes
isNot MembershipWhereInput | Null Yes

BookListRelationFilter

Name Type Nullable
every BookWhereInput No
some BookWhereInput No
none BookWhereInput No

AccountOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BlockOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ChatMessageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CommentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CommuneOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CommuneUserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FanOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FollowOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

GalleryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ImageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

LikeOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PostOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

SessionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ShareOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ChatRoomOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BookOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No
membershipId SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No
membershipId SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
emailVerified SortOrder No
image SortOrder No
membershipId SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

DateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

BoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

UserRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

NewsRelationFilter

Name Type Nullable
is NewsWhereInput | Null Yes
isNot NewsWhereInput | Null Yes

PostRelationFilter

Name Type Nullable
is PostWhereInput No
isNot PostWhereInput No

PostCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
content SortOrder No
shareId SortOrder No
commentId SortOrder No
authorId SortOrder No

PostMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
content SortOrder No
shareId SortOrder No
commentId SortOrder No
authorId SortOrder No

PostMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
content SortOrder No
shareId SortOrder No
commentId SortOrder No
authorId SortOrder No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

EnumAudienceFilter

Name Type Nullable
equals Audience No
in Audience[] No
notIn Audience[] No
not Audience | NestedEnumAudienceFilter No

IntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NewsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
banner SortOrder No
startDate SortOrder No
endDate SortOrder No
postId SortOrder No
audience SortOrder No
views SortOrder No
priority SortOrder No

NewsAvgOrderByAggregateInput

Name Type Nullable
views SortOrder No
priority SortOrder No

NewsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
banner SortOrder No
startDate SortOrder No
endDate SortOrder No
postId SortOrder No
audience SortOrder No
views SortOrder No
priority SortOrder No

NewsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
banner SortOrder No
startDate SortOrder No
endDate SortOrder No
postId SortOrder No
audience SortOrder No
views SortOrder No
priority SortOrder No

NewsSumOrderByAggregateInput

Name Type Nullable
views SortOrder No
priority SortOrder No

EnumAudienceWithAggregatesFilter

Name Type Nullable
equals Audience No
in Audience[] No
notIn Audience[] No
not Audience | NestedEnumAudienceWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumAudienceFilter No
_max NestedEnumAudienceFilter No

IntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

CommuneRelationFilter

Name Type Nullable
is CommuneWhereInput | Null Yes
isNot CommuneWhereInput | Null Yes

BookRelationFilter

Name Type Nullable
is BookWhereInput No
isNot BookWhereInput No

CharacterRelationFilter

Name Type Nullable
is CharacterWhereInput | Null Yes
isNot CharacterWhereInput | Null Yes

ChapterRelationFilter

Name Type Nullable
is ChapterWhereInput | Null Yes
isNot ChapterWhereInput | Null Yes

GalleryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
description SortOrder No
authorId SortOrder No
shareId SortOrder No

GalleryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
description SortOrder No
authorId SortOrder No
shareId SortOrder No

GalleryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
description SortOrder No
authorId SortOrder No
shareId SortOrder No

IntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

GalleryRelationFilter

Name Type Nullable
is GalleryWhereInput | Null Yes
isNot GalleryWhereInput | Null Yes

ImageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
authorId SortOrder No
galleryId SortOrder No
shareId SortOrder No
url SortOrder No
postId SortOrder No
height SortOrder No
width SortOrder No

ImageAvgOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No

ImageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
authorId SortOrder No
galleryId SortOrder No
shareId SortOrder No
url SortOrder No
postId SortOrder No
height SortOrder No
width SortOrder No

ImageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
title SortOrder No
authorId SortOrder No
galleryId SortOrder No
shareId SortOrder No
url SortOrder No
postId SortOrder No
height SortOrder No
width SortOrder No

ImageSumOrderByAggregateInput

Name Type Nullable
height SortOrder No
width SortOrder No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

CommentRelationFilter

Name Type Nullable
is CommentWhereInput | Null Yes
isNot CommentWhereInput | Null Yes

ImageRelationFilter

Name Type Nullable
is ImageWhereInput | Null Yes
isNot ImageWhereInput | Null Yes

LikeCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
postId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
galleryId SortOrder No
imageId SortOrder No
commentId SortOrder No
characterId SortOrder No
bookId SortOrder No

LikeMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
postId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
galleryId SortOrder No
imageId SortOrder No
commentId SortOrder No
characterId SortOrder No
bookId SortOrder No

LikeMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
authorId SortOrder No
postId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
galleryId SortOrder No
imageId SortOrder No
commentId SortOrder No
characterId SortOrder No
bookId SortOrder No

ShareCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
authorId SortOrder No
postId SortOrder No
galleryId SortOrder No
imageId SortOrder No

ShareMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
authorId SortOrder No
postId SortOrder No
galleryId SortOrder No
imageId SortOrder No

ShareMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
authorId SortOrder No
postId SortOrder No
galleryId SortOrder No
imageId SortOrder No

FollowCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
followerId SortOrder No
followingId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
characterId SortOrder No
bookId SortOrder No

FollowMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
followerId SortOrder No
followingId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
characterId SortOrder No
bookId SortOrder No

FollowMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
followerId SortOrder No
followingId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
characterId SortOrder No
bookId SortOrder No

FanCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
fanId SortOrder No
fanOfId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

FanMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
fanId SortOrder No
fanOfId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

FanMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
fanId SortOrder No
fanOfId SortOrder No
createdAt SortOrder No
updatedAt SortOrder No

UserListRelationFilter

Name Type Nullable
every UserWhereInput No
some UserWhereInput No
none UserWhereInput No

UserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ChatRoomCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
party SortOrder No

ChatRoomMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
party SortOrder No

ChatRoomMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
party SortOrder No

ChatRoomRelationFilter

Name Type Nullable
is ChatRoomWhereInput No
isNot ChatRoomWhereInput No

ChatMessageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
seen SortOrder No
chatRoomId SortOrder No
authorId SortOrder No
content SortOrder No

ChatMessageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
seen SortOrder No
chatRoomId SortOrder No
authorId SortOrder No
content SortOrder No

ChatMessageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
visible SortOrder No
seen SortOrder No
chatRoomId SortOrder No
authorId SortOrder No
content SortOrder No

EnumEntityFilter

Name Type Nullable
equals Entity No
in Entity[] No
notIn Entity[] No
not Entity | NestedEnumEntityFilter No

EnumRoleFilter

Name Type Nullable
equals Role No
in Role[] No
notIn Role[] No
not Role | NestedEnumRoleFilter No

CommentThreadCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
requiredRole SortOrder No

CommentThreadMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
requiredRole SortOrder No

CommentThreadMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
requiredRole SortOrder No

EnumEntityWithAggregatesFilter

Name Type Nullable
equals Entity No
in Entity[] No
notIn Entity[] No
not Entity | NestedEnumEntityWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumEntityFilter No
_max NestedEnumEntityFilter No

EnumRoleWithAggregatesFilter

Name Type Nullable
equals Role No
in Role[] No
notIn Role[] No
not Role | NestedEnumRoleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumRoleFilter No
_max NestedEnumRoleFilter No

CommentThreadRelationFilter

Name Type Nullable
is CommentThreadWhereInput No
isNot CommentThreadWhereInput No

CommentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
threadType SortOrder No
threadId SortOrder No
authorId SortOrder No
content SortOrder No
visible SortOrder No

CommentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
threadType SortOrder No
threadId SortOrder No
authorId SortOrder No
content SortOrder No
visible SortOrder No

CommentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
threadType SortOrder No
threadId SortOrder No
authorId SortOrder No
content SortOrder No
visible SortOrder No

CommuneCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
ownerId SortOrder No
entity SortOrder No
galleryId SortOrder No
threadId SortOrder No

CommuneMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
ownerId SortOrder No
entity SortOrder No
galleryId SortOrder No
threadId SortOrder No

CommuneMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
ownerId SortOrder No
entity SortOrder No
galleryId SortOrder No
threadId SortOrder No

CommuneUserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
communeId SortOrder No
userId SortOrder No
role SortOrder No

CommuneUserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
communeId SortOrder No
userId SortOrder No
role SortOrder No

CommuneUserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
communeId SortOrder No
userId SortOrder No
role SortOrder No

EnumAudienceNullableFilter

Name Type Nullable
equals Audience | Null Yes
in Audience[] | Null Yes
notIn Audience[] | Null Yes
not Audience | NestedEnumAudienceNullableFilter | Null Yes

MembershipCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
level SortOrder No

MembershipMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
level SortOrder No

MembershipMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
level SortOrder No

EnumAudienceNullableWithAggregatesFilter

Name Type Nullable
equals Audience | Null Yes
in Audience[] | Null Yes
notIn Audience[] | Null Yes
not Audience | NestedEnumAudienceNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumAudienceNullableFilter No
_max NestedEnumAudienceNullableFilter No

CoversListRelationFilter

Name Type Nullable
every CoversWhereInput No
some CoversWhereInput No
none CoversWhereInput No

CoversOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

GenreCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No
fiction SortOrder No

GenreMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No
fiction SortOrder No

GenreMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No
fiction SortOrder No

GenreRelationFilter

Name Type Nullable
is GenreWhereInput No
isNot GenreWhereInput No

CoversCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
url SortOrder No
genreId SortOrder No

CoversMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
url SortOrder No
genreId SortOrder No

CoversMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
url SortOrder No
genreId SortOrder No

BookCategoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No

BookCategoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No

BookCategoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
title SortOrder No
description SortOrder No

EnumBookStatusNullableFilter

Name Type Nullable
equals BookStatus | Null Yes
in BookStatus[] | Null Yes
notIn BookStatus[] | Null Yes
not BookStatus | NestedEnumBookStatusNullableFilter | Null Yes

BookCategoryListRelationFilter

Name Type Nullable
every BookCategoryWhereInput No
some BookCategoryWhereInput No
none BookCategoryWhereInput No

ChapterListRelationFilter

Name Type Nullable
every ChapterWhereInput No
some ChapterWhereInput No
none ChapterWhereInput No

CharacterListRelationFilter

Name Type Nullable
every CharacterWhereInput No
some CharacterWhereInput No
none CharacterWhereInput No

BookCategoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ChapterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CharacterOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BookCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
status SortOrder No
prospect SortOrder No
title SortOrder No
cover SortOrder No
genreId SortOrder No
hook SortOrder No
synopsis SortOrder No
back SortOrder No
words SortOrder No
galleryId SortOrder No

BookAvgOrderByAggregateInput

Name Type Nullable
words SortOrder No

BookMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
status SortOrder No
prospect SortOrder No
title SortOrder No
cover SortOrder No
genreId SortOrder No
hook SortOrder No
synopsis SortOrder No
back SortOrder No
words SortOrder No
galleryId SortOrder No

BookMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
status SortOrder No
prospect SortOrder No
title SortOrder No
cover SortOrder No
genreId SortOrder No
hook SortOrder No
synopsis SortOrder No
back SortOrder No
words SortOrder No
galleryId SortOrder No

BookSumOrderByAggregateInput

Name Type Nullable
words SortOrder No

EnumBookStatusNullableWithAggregatesFilter

Name Type Nullable
equals BookStatus | Null Yes
in BookStatus[] | Null Yes
notIn BookStatus[] | Null Yes
not BookStatus | NestedEnumBookStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumBookStatusNullableFilter No
_max NestedEnumBookStatusNullableFilter No

CharacterCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
name SortOrder No
familyName SortOrder No
givenName SortOrder No
middleName SortOrder No
thumbnail SortOrder No
age SortOrder No
role SortOrder No
description SortOrder No
backstory SortOrder No
title SortOrder No
archetype SortOrder No
galleryId SortOrder No

CharacterMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
name SortOrder No
familyName SortOrder No
givenName SortOrder No
middleName SortOrder No
thumbnail SortOrder No
age SortOrder No
role SortOrder No
description SortOrder No
backstory SortOrder No
title SortOrder No
archetype SortOrder No
galleryId SortOrder No

CharacterMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
name SortOrder No
familyName SortOrder No
givenName SortOrder No
middleName SortOrder No
thumbnail SortOrder No
age SortOrder No
role SortOrder No
description SortOrder No
backstory SortOrder No
title SortOrder No
archetype SortOrder No
galleryId SortOrder No

ChapterCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
content SortOrder No
words SortOrder No
bookId SortOrder No
galleryId SortOrder No

ChapterAvgOrderByAggregateInput

Name Type Nullable
words SortOrder No

ChapterMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
content SortOrder No
words SortOrder No
bookId SortOrder No
galleryId SortOrder No

ChapterMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
active SortOrder No
content SortOrder No
words SortOrder No
bookId SortOrder No
galleryId SortOrder No

ChapterSumOrderByAggregateInput

Name Type Nullable
words SortOrder No

EnumEntityNullableFilter

Name Type Nullable
equals Entity | Null Yes
in Entity[] | Null Yes
notIn Entity[] | Null Yes
not Entity | NestedEnumEntityNullableFilter | Null Yes

BlockCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
entityId SortOrder No
blockedId SortOrder No
galleryId SortOrder No
threadId SortOrder No
userId SortOrder No

BlockMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
entityId SortOrder No
blockedId SortOrder No
galleryId SortOrder No
threadId SortOrder No
userId SortOrder No

BlockMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
createdAt SortOrder No
updatedAt SortOrder No
entity SortOrder No
entityId SortOrder No
blockedId SortOrder No
galleryId SortOrder No
threadId SortOrder No
userId SortOrder No

EnumEntityNullableWithAggregatesFilter

Name Type Nullable
equals Entity | Null Yes
in Entity[] | Null Yes
notIn Entity[] | Null Yes
not Entity | NestedEnumEntityNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumEntityNullableFilter No
_max NestedEnumEntityNullableFilter No

VerificationTokenIdentifierTokenCompoundUniqueInput

Name Type Nullable
identifier String No
token String No

VerificationTokenCountOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMaxOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

VerificationTokenMinOrderByAggregateInput

Name Type Nullable
identifier SortOrder No
token SortOrder No
expires SortOrder No

AccountProviderProviderAccountIdCompoundUniqueInput

Name Type Nullable
provider String No
providerAccountId String No

AccountCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
oauth_token_secret SortOrder No
oauth_token SortOrder No

AccountAvgOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

AccountMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
oauth_token_secret SortOrder No
oauth_token SortOrder No

AccountMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No
type SortOrder No
provider SortOrder No
providerAccountId SortOrder No
refresh_token SortOrder No
access_token SortOrder No
expires_at SortOrder No
token_type SortOrder No
scope SortOrder No
id_token SortOrder No
session_state SortOrder No
oauth_token_secret SortOrder No
oauth_token SortOrder No

AccountSumOrderByAggregateInput

Name Type Nullable
expires_at SortOrder No

SessionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No

SessionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No

SessionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
sessionToken SortOrder No
userId SortOrder No
expires SortOrder No



















MembershipCreateNestedOneWithoutUserInput

Name Type Nullable
create MembershipCreateWithoutUserInput | MembershipUncheckedCreateWithoutUserInput No
connectOrCreate MembershipCreateOrConnectWithoutUserInput No
connect MembershipWhereUniqueInput No





















StringFieldUpdateOperationsInput

Name Type Nullable
set String No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

AccountUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

BlockUpdateManyWithoutBlockedUserNestedInput

Name Type Nullable
create BlockCreateWithoutBlockedUserInput | BlockCreateWithoutBlockedUserInput[] | BlockUncheckedCreateWithoutBlockedUserInput | BlockUncheckedCreateWithoutBlockedUserInput[] No
connectOrCreate BlockCreateOrConnectWithoutBlockedUserInput | BlockCreateOrConnectWithoutBlockedUserInput[] No
upsert BlockUpsertWithWhereUniqueWithoutBlockedUserInput | BlockUpsertWithWhereUniqueWithoutBlockedUserInput[] No
createMany BlockCreateManyBlockedUserInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutBlockedUserInput | BlockUpdateWithWhereUniqueWithoutBlockedUserInput[] No
updateMany BlockUpdateManyWithWhereWithoutBlockedUserInput | BlockUpdateManyWithWhereWithoutBlockedUserInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

BlockUpdateManyWithoutUserNestedInput

Name Type Nullable
create BlockCreateWithoutUserInput | BlockCreateWithoutUserInput[] | BlockUncheckedCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput[] No
connectOrCreate BlockCreateOrConnectWithoutUserInput | BlockCreateOrConnectWithoutUserInput[] No
upsert BlockUpsertWithWhereUniqueWithoutUserInput | BlockUpsertWithWhereUniqueWithoutUserInput[] No
createMany BlockCreateManyUserInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutUserInput | BlockUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BlockUpdateManyWithWhereWithoutUserInput | BlockUpdateManyWithWhereWithoutUserInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

ChatMessageUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create ChatMessageCreateWithoutAuthorInput | ChatMessageCreateWithoutAuthorInput[] | ChatMessageUncheckedCreateWithoutAuthorInput | ChatMessageUncheckedCreateWithoutAuthorInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutAuthorInput | ChatMessageCreateOrConnectWithoutAuthorInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutAuthorInput | ChatMessageUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany ChatMessageCreateManyAuthorInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutAuthorInput | ChatMessageUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutAuthorInput | ChatMessageUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

CommentUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] No
connectOrCreate CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] No
upsert CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany CommentCreateManyAuthorInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

CommuneUpdateManyWithoutOwnerNestedInput

Name Type Nullable
create CommuneCreateWithoutOwnerInput | CommuneCreateWithoutOwnerInput[] | CommuneUncheckedCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput[] No
connectOrCreate CommuneCreateOrConnectWithoutOwnerInput | CommuneCreateOrConnectWithoutOwnerInput[] No
upsert CommuneUpsertWithWhereUniqueWithoutOwnerInput | CommuneUpsertWithWhereUniqueWithoutOwnerInput[] No
createMany CommuneCreateManyOwnerInputEnvelope No
set CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
disconnect CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
delete CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
connect CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
update CommuneUpdateWithWhereUniqueWithoutOwnerInput | CommuneUpdateWithWhereUniqueWithoutOwnerInput[] No
updateMany CommuneUpdateManyWithWhereWithoutOwnerInput | CommuneUpdateManyWithWhereWithoutOwnerInput[] No
deleteMany CommuneScalarWhereInput | CommuneScalarWhereInput[] No

CommuneUserUpdateManyWithoutUserNestedInput

Name Type Nullable
create CommuneUserCreateWithoutUserInput | CommuneUserCreateWithoutUserInput[] | CommuneUserUncheckedCreateWithoutUserInput | CommuneUserUncheckedCreateWithoutUserInput[] No
connectOrCreate CommuneUserCreateOrConnectWithoutUserInput | CommuneUserCreateOrConnectWithoutUserInput[] No
upsert CommuneUserUpsertWithWhereUniqueWithoutUserInput | CommuneUserUpsertWithWhereUniqueWithoutUserInput[] No
createMany CommuneUserCreateManyUserInputEnvelope No
set CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
disconnect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
delete CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
connect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
update CommuneUserUpdateWithWhereUniqueWithoutUserInput | CommuneUserUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CommuneUserUpdateManyWithWhereWithoutUserInput | CommuneUserUpdateManyWithWhereWithoutUserInput[] No
deleteMany CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] No

FanUpdateManyWithoutFanNestedInput

Name Type Nullable
create FanCreateWithoutFanInput | FanCreateWithoutFanInput[] | FanUncheckedCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput[] No
connectOrCreate FanCreateOrConnectWithoutFanInput | FanCreateOrConnectWithoutFanInput[] No
upsert FanUpsertWithWhereUniqueWithoutFanInput | FanUpsertWithWhereUniqueWithoutFanInput[] No
createMany FanCreateManyFanInputEnvelope No
set FanWhereUniqueInput | FanWhereUniqueInput[] No
disconnect FanWhereUniqueInput | FanWhereUniqueInput[] No
delete FanWhereUniqueInput | FanWhereUniqueInput[] No
connect FanWhereUniqueInput | FanWhereUniqueInput[] No
update FanUpdateWithWhereUniqueWithoutFanInput | FanUpdateWithWhereUniqueWithoutFanInput[] No
updateMany FanUpdateManyWithWhereWithoutFanInput | FanUpdateManyWithWhereWithoutFanInput[] No
deleteMany FanScalarWhereInput | FanScalarWhereInput[] No

FanUpdateManyWithoutFanOfNestedInput

Name Type Nullable
create FanCreateWithoutFanOfInput | FanCreateWithoutFanOfInput[] | FanUncheckedCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput[] No
connectOrCreate FanCreateOrConnectWithoutFanOfInput | FanCreateOrConnectWithoutFanOfInput[] No
upsert FanUpsertWithWhereUniqueWithoutFanOfInput | FanUpsertWithWhereUniqueWithoutFanOfInput[] No
createMany FanCreateManyFanOfInputEnvelope No
set FanWhereUniqueInput | FanWhereUniqueInput[] No
disconnect FanWhereUniqueInput | FanWhereUniqueInput[] No
delete FanWhereUniqueInput | FanWhereUniqueInput[] No
connect FanWhereUniqueInput | FanWhereUniqueInput[] No
update FanUpdateWithWhereUniqueWithoutFanOfInput | FanUpdateWithWhereUniqueWithoutFanOfInput[] No
updateMany FanUpdateManyWithWhereWithoutFanOfInput | FanUpdateManyWithWhereWithoutFanOfInput[] No
deleteMany FanScalarWhereInput | FanScalarWhereInput[] No

FollowUpdateManyWithoutFollowerNestedInput

Name Type Nullable
create FollowCreateWithoutFollowerInput | FollowCreateWithoutFollowerInput[] | FollowUncheckedCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowCreateOrConnectWithoutFollowerInput | FollowCreateOrConnectWithoutFollowerInput[] No
upsert FollowUpsertWithWhereUniqueWithoutFollowerInput | FollowUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowCreateManyFollowerInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutFollowerInput | FollowUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowUpdateManyWithWhereWithoutFollowerInput | FollowUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

FollowUpdateManyWithoutFollowingNestedInput

Name Type Nullable
create FollowCreateWithoutFollowingInput | FollowCreateWithoutFollowingInput[] | FollowUncheckedCreateWithoutFollowingInput | FollowUncheckedCreateWithoutFollowingInput[] No
connectOrCreate FollowCreateOrConnectWithoutFollowingInput | FollowCreateOrConnectWithoutFollowingInput[] No
upsert FollowUpsertWithWhereUniqueWithoutFollowingInput | FollowUpsertWithWhereUniqueWithoutFollowingInput[] No
createMany FollowCreateManyFollowingInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutFollowingInput | FollowUpdateWithWhereUniqueWithoutFollowingInput[] No
updateMany FollowUpdateManyWithWhereWithoutFollowingInput | FollowUpdateManyWithWhereWithoutFollowingInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

GalleryUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create GalleryCreateWithoutAuthorInput | GalleryCreateWithoutAuthorInput[] | GalleryUncheckedCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput[] No
connectOrCreate GalleryCreateOrConnectWithoutAuthorInput | GalleryCreateOrConnectWithoutAuthorInput[] No
upsert GalleryUpsertWithWhereUniqueWithoutAuthorInput | GalleryUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany GalleryCreateManyAuthorInputEnvelope No
set GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
disconnect GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
delete GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
connect GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
update GalleryUpdateWithWhereUniqueWithoutAuthorInput | GalleryUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany GalleryUpdateManyWithWhereWithoutAuthorInput | GalleryUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany GalleryScalarWhereInput | GalleryScalarWhereInput[] No

ImageUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create ImageCreateWithoutAuthorInput | ImageCreateWithoutAuthorInput[] | ImageUncheckedCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput[] No
connectOrCreate ImageCreateOrConnectWithoutAuthorInput | ImageCreateOrConnectWithoutAuthorInput[] No
upsert ImageUpsertWithWhereUniqueWithoutAuthorInput | ImageUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany ImageCreateManyAuthorInputEnvelope No
set ImageWhereUniqueInput | ImageWhereUniqueInput[] No
disconnect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
delete ImageWhereUniqueInput | ImageWhereUniqueInput[] No
connect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
update ImageUpdateWithWhereUniqueWithoutAuthorInput | ImageUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany ImageUpdateManyWithWhereWithoutAuthorInput | ImageUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany ImageScalarWhereInput | ImageScalarWhereInput[] No

LikeUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create LikeCreateWithoutAuthorInput | LikeCreateWithoutAuthorInput[] | LikeUncheckedCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput[] No
connectOrCreate LikeCreateOrConnectWithoutAuthorInput | LikeCreateOrConnectWithoutAuthorInput[] No
upsert LikeUpsertWithWhereUniqueWithoutAuthorInput | LikeUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany LikeCreateManyAuthorInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutAuthorInput | LikeUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany LikeUpdateManyWithWhereWithoutAuthorInput | LikeUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

PostUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] No
connectOrCreate PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] No
upsert PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany PostCreateManyAuthorInputEnvelope No
set PostWhereUniqueInput | PostWhereUniqueInput[] No
disconnect PostWhereUniqueInput | PostWhereUniqueInput[] No
delete PostWhereUniqueInput | PostWhereUniqueInput[] No
connect PostWhereUniqueInput | PostWhereUniqueInput[] No
update PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany PostScalarWhereInput | PostScalarWhereInput[] No

SessionUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

ShareUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create ShareCreateWithoutAuthorInput | ShareCreateWithoutAuthorInput[] | ShareUncheckedCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput[] No
connectOrCreate ShareCreateOrConnectWithoutAuthorInput | ShareCreateOrConnectWithoutAuthorInput[] No
upsert ShareUpsertWithWhereUniqueWithoutAuthorInput | ShareUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany ShareCreateManyAuthorInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutAuthorInput | ShareUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany ShareUpdateManyWithWhereWithoutAuthorInput | ShareUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

ChatRoomUpdateManyWithoutUsersNestedInput

Name Type Nullable
create ChatRoomCreateWithoutUsersInput | ChatRoomCreateWithoutUsersInput[] | ChatRoomUncheckedCreateWithoutUsersInput | ChatRoomUncheckedCreateWithoutUsersInput[] No
connectOrCreate ChatRoomCreateOrConnectWithoutUsersInput | ChatRoomCreateOrConnectWithoutUsersInput[] No
upsert ChatRoomUpsertWithWhereUniqueWithoutUsersInput | ChatRoomUpsertWithWhereUniqueWithoutUsersInput[] No
set ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
disconnect ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
delete ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
connect ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
update ChatRoomUpdateWithWhereUniqueWithoutUsersInput | ChatRoomUpdateWithWhereUniqueWithoutUsersInput[] No
updateMany ChatRoomUpdateManyWithWhereWithoutUsersInput | ChatRoomUpdateManyWithWhereWithoutUsersInput[] No
deleteMany ChatRoomScalarWhereInput | ChatRoomScalarWhereInput[] No

MembershipUpdateOneWithoutUserNestedInput

Name Type Nullable
create MembershipCreateWithoutUserInput | MembershipUncheckedCreateWithoutUserInput No
connectOrCreate MembershipCreateOrConnectWithoutUserInput No
upsert MembershipUpsertWithoutUserInput No
disconnect Boolean No
delete Boolean No
connect MembershipWhereUniqueInput No
update MembershipUpdateWithoutUserInput | MembershipUncheckedUpdateWithoutUserInput No

BookUpdateManyWithoutAuthorsNestedInput

Name Type Nullable
create BookCreateWithoutAuthorsInput | BookCreateWithoutAuthorsInput[] | BookUncheckedCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput[] No
connectOrCreate BookCreateOrConnectWithoutAuthorsInput | BookCreateOrConnectWithoutAuthorsInput[] No
upsert BookUpsertWithWhereUniqueWithoutAuthorsInput | BookUpsertWithWhereUniqueWithoutAuthorsInput[] No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutAuthorsInput | BookUpdateWithWhereUniqueWithoutAuthorsInput[] No
updateMany BookUpdateManyWithWhereWithoutAuthorsInput | BookUpdateManyWithWhereWithoutAuthorsInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No

AccountUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create AccountCreateWithoutUserInput | AccountCreateWithoutUserInput[] | AccountUncheckedCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput[] No
connectOrCreate AccountCreateOrConnectWithoutUserInput | AccountCreateOrConnectWithoutUserInput[] No
upsert AccountUpsertWithWhereUniqueWithoutUserInput | AccountUpsertWithWhereUniqueWithoutUserInput[] No
createMany AccountCreateManyUserInputEnvelope No
set AccountWhereUniqueInput | AccountWhereUniqueInput[] No
disconnect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
delete AccountWhereUniqueInput | AccountWhereUniqueInput[] No
connect AccountWhereUniqueInput | AccountWhereUniqueInput[] No
update AccountUpdateWithWhereUniqueWithoutUserInput | AccountUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AccountUpdateManyWithWhereWithoutUserInput | AccountUpdateManyWithWhereWithoutUserInput[] No
deleteMany AccountScalarWhereInput | AccountScalarWhereInput[] No

BlockUncheckedUpdateManyWithoutBlockedUserNestedInput

Name Type Nullable
create BlockCreateWithoutBlockedUserInput | BlockCreateWithoutBlockedUserInput[] | BlockUncheckedCreateWithoutBlockedUserInput | BlockUncheckedCreateWithoutBlockedUserInput[] No
connectOrCreate BlockCreateOrConnectWithoutBlockedUserInput | BlockCreateOrConnectWithoutBlockedUserInput[] No
upsert BlockUpsertWithWhereUniqueWithoutBlockedUserInput | BlockUpsertWithWhereUniqueWithoutBlockedUserInput[] No
createMany BlockCreateManyBlockedUserInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutBlockedUserInput | BlockUpdateWithWhereUniqueWithoutBlockedUserInput[] No
updateMany BlockUpdateManyWithWhereWithoutBlockedUserInput | BlockUpdateManyWithWhereWithoutBlockedUserInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

BlockUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create BlockCreateWithoutUserInput | BlockCreateWithoutUserInput[] | BlockUncheckedCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput[] No
connectOrCreate BlockCreateOrConnectWithoutUserInput | BlockCreateOrConnectWithoutUserInput[] No
upsert BlockUpsertWithWhereUniqueWithoutUserInput | BlockUpsertWithWhereUniqueWithoutUserInput[] No
createMany BlockCreateManyUserInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutUserInput | BlockUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BlockUpdateManyWithWhereWithoutUserInput | BlockUpdateManyWithWhereWithoutUserInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create ChatMessageCreateWithoutAuthorInput | ChatMessageCreateWithoutAuthorInput[] | ChatMessageUncheckedCreateWithoutAuthorInput | ChatMessageUncheckedCreateWithoutAuthorInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutAuthorInput | ChatMessageCreateOrConnectWithoutAuthorInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutAuthorInput | ChatMessageUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany ChatMessageCreateManyAuthorInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutAuthorInput | ChatMessageUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutAuthorInput | ChatMessageUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

CommentUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create CommentCreateWithoutAuthorInput | CommentCreateWithoutAuthorInput[] | CommentUncheckedCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput[] No
connectOrCreate CommentCreateOrConnectWithoutAuthorInput | CommentCreateOrConnectWithoutAuthorInput[] No
upsert CommentUpsertWithWhereUniqueWithoutAuthorInput | CommentUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany CommentCreateManyAuthorInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutAuthorInput | CommentUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany CommentUpdateManyWithWhereWithoutAuthorInput | CommentUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

CommuneUncheckedUpdateManyWithoutOwnerNestedInput

Name Type Nullable
create CommuneCreateWithoutOwnerInput | CommuneCreateWithoutOwnerInput[] | CommuneUncheckedCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput[] No
connectOrCreate CommuneCreateOrConnectWithoutOwnerInput | CommuneCreateOrConnectWithoutOwnerInput[] No
upsert CommuneUpsertWithWhereUniqueWithoutOwnerInput | CommuneUpsertWithWhereUniqueWithoutOwnerInput[] No
createMany CommuneCreateManyOwnerInputEnvelope No
set CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
disconnect CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
delete CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
connect CommuneWhereUniqueInput | CommuneWhereUniqueInput[] No
update CommuneUpdateWithWhereUniqueWithoutOwnerInput | CommuneUpdateWithWhereUniqueWithoutOwnerInput[] No
updateMany CommuneUpdateManyWithWhereWithoutOwnerInput | CommuneUpdateManyWithWhereWithoutOwnerInput[] No
deleteMany CommuneScalarWhereInput | CommuneScalarWhereInput[] No

CommuneUserUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create CommuneUserCreateWithoutUserInput | CommuneUserCreateWithoutUserInput[] | CommuneUserUncheckedCreateWithoutUserInput | CommuneUserUncheckedCreateWithoutUserInput[] No
connectOrCreate CommuneUserCreateOrConnectWithoutUserInput | CommuneUserCreateOrConnectWithoutUserInput[] No
upsert CommuneUserUpsertWithWhereUniqueWithoutUserInput | CommuneUserUpsertWithWhereUniqueWithoutUserInput[] No
createMany CommuneUserCreateManyUserInputEnvelope No
set CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
disconnect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
delete CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
connect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
update CommuneUserUpdateWithWhereUniqueWithoutUserInput | CommuneUserUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CommuneUserUpdateManyWithWhereWithoutUserInput | CommuneUserUpdateManyWithWhereWithoutUserInput[] No
deleteMany CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] No

FanUncheckedUpdateManyWithoutFanNestedInput

Name Type Nullable
create FanCreateWithoutFanInput | FanCreateWithoutFanInput[] | FanUncheckedCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput[] No
connectOrCreate FanCreateOrConnectWithoutFanInput | FanCreateOrConnectWithoutFanInput[] No
upsert FanUpsertWithWhereUniqueWithoutFanInput | FanUpsertWithWhereUniqueWithoutFanInput[] No
createMany FanCreateManyFanInputEnvelope No
set FanWhereUniqueInput | FanWhereUniqueInput[] No
disconnect FanWhereUniqueInput | FanWhereUniqueInput[] No
delete FanWhereUniqueInput | FanWhereUniqueInput[] No
connect FanWhereUniqueInput | FanWhereUniqueInput[] No
update FanUpdateWithWhereUniqueWithoutFanInput | FanUpdateWithWhereUniqueWithoutFanInput[] No
updateMany FanUpdateManyWithWhereWithoutFanInput | FanUpdateManyWithWhereWithoutFanInput[] No
deleteMany FanScalarWhereInput | FanScalarWhereInput[] No

FanUncheckedUpdateManyWithoutFanOfNestedInput

Name Type Nullable
create FanCreateWithoutFanOfInput | FanCreateWithoutFanOfInput[] | FanUncheckedCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput[] No
connectOrCreate FanCreateOrConnectWithoutFanOfInput | FanCreateOrConnectWithoutFanOfInput[] No
upsert FanUpsertWithWhereUniqueWithoutFanOfInput | FanUpsertWithWhereUniqueWithoutFanOfInput[] No
createMany FanCreateManyFanOfInputEnvelope No
set FanWhereUniqueInput | FanWhereUniqueInput[] No
disconnect FanWhereUniqueInput | FanWhereUniqueInput[] No
delete FanWhereUniqueInput | FanWhereUniqueInput[] No
connect FanWhereUniqueInput | FanWhereUniqueInput[] No
update FanUpdateWithWhereUniqueWithoutFanOfInput | FanUpdateWithWhereUniqueWithoutFanOfInput[] No
updateMany FanUpdateManyWithWhereWithoutFanOfInput | FanUpdateManyWithWhereWithoutFanOfInput[] No
deleteMany FanScalarWhereInput | FanScalarWhereInput[] No

FollowUncheckedUpdateManyWithoutFollowerNestedInput

Name Type Nullable
create FollowCreateWithoutFollowerInput | FollowCreateWithoutFollowerInput[] | FollowUncheckedCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput[] No
connectOrCreate FollowCreateOrConnectWithoutFollowerInput | FollowCreateOrConnectWithoutFollowerInput[] No
upsert FollowUpsertWithWhereUniqueWithoutFollowerInput | FollowUpsertWithWhereUniqueWithoutFollowerInput[] No
createMany FollowCreateManyFollowerInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutFollowerInput | FollowUpdateWithWhereUniqueWithoutFollowerInput[] No
updateMany FollowUpdateManyWithWhereWithoutFollowerInput | FollowUpdateManyWithWhereWithoutFollowerInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

FollowUncheckedUpdateManyWithoutFollowingNestedInput

Name Type Nullable
create FollowCreateWithoutFollowingInput | FollowCreateWithoutFollowingInput[] | FollowUncheckedCreateWithoutFollowingInput | FollowUncheckedCreateWithoutFollowingInput[] No
connectOrCreate FollowCreateOrConnectWithoutFollowingInput | FollowCreateOrConnectWithoutFollowingInput[] No
upsert FollowUpsertWithWhereUniqueWithoutFollowingInput | FollowUpsertWithWhereUniqueWithoutFollowingInput[] No
createMany FollowCreateManyFollowingInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutFollowingInput | FollowUpdateWithWhereUniqueWithoutFollowingInput[] No
updateMany FollowUpdateManyWithWhereWithoutFollowingInput | FollowUpdateManyWithWhereWithoutFollowingInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

GalleryUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create GalleryCreateWithoutAuthorInput | GalleryCreateWithoutAuthorInput[] | GalleryUncheckedCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput[] No
connectOrCreate GalleryCreateOrConnectWithoutAuthorInput | GalleryCreateOrConnectWithoutAuthorInput[] No
upsert GalleryUpsertWithWhereUniqueWithoutAuthorInput | GalleryUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany GalleryCreateManyAuthorInputEnvelope No
set GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
disconnect GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
delete GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
connect GalleryWhereUniqueInput | GalleryWhereUniqueInput[] No
update GalleryUpdateWithWhereUniqueWithoutAuthorInput | GalleryUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany GalleryUpdateManyWithWhereWithoutAuthorInput | GalleryUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany GalleryScalarWhereInput | GalleryScalarWhereInput[] No

ImageUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create ImageCreateWithoutAuthorInput | ImageCreateWithoutAuthorInput[] | ImageUncheckedCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput[] No
connectOrCreate ImageCreateOrConnectWithoutAuthorInput | ImageCreateOrConnectWithoutAuthorInput[] No
upsert ImageUpsertWithWhereUniqueWithoutAuthorInput | ImageUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany ImageCreateManyAuthorInputEnvelope No
set ImageWhereUniqueInput | ImageWhereUniqueInput[] No
disconnect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
delete ImageWhereUniqueInput | ImageWhereUniqueInput[] No
connect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
update ImageUpdateWithWhereUniqueWithoutAuthorInput | ImageUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany ImageUpdateManyWithWhereWithoutAuthorInput | ImageUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany ImageScalarWhereInput | ImageScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create LikeCreateWithoutAuthorInput | LikeCreateWithoutAuthorInput[] | LikeUncheckedCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput[] No
connectOrCreate LikeCreateOrConnectWithoutAuthorInput | LikeCreateOrConnectWithoutAuthorInput[] No
upsert LikeUpsertWithWhereUniqueWithoutAuthorInput | LikeUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany LikeCreateManyAuthorInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutAuthorInput | LikeUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany LikeUpdateManyWithWhereWithoutAuthorInput | LikeUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

PostUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create PostCreateWithoutAuthorInput | PostCreateWithoutAuthorInput[] | PostUncheckedCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput[] No
connectOrCreate PostCreateOrConnectWithoutAuthorInput | PostCreateOrConnectWithoutAuthorInput[] No
upsert PostUpsertWithWhereUniqueWithoutAuthorInput | PostUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany PostCreateManyAuthorInputEnvelope No
set PostWhereUniqueInput | PostWhereUniqueInput[] No
disconnect PostWhereUniqueInput | PostWhereUniqueInput[] No
delete PostWhereUniqueInput | PostWhereUniqueInput[] No
connect PostWhereUniqueInput | PostWhereUniqueInput[] No
update PostUpdateWithWhereUniqueWithoutAuthorInput | PostUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany PostUpdateManyWithWhereWithoutAuthorInput | PostUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany PostScalarWhereInput | PostScalarWhereInput[] No

SessionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create SessionCreateWithoutUserInput | SessionCreateWithoutUserInput[] | SessionUncheckedCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput[] No
connectOrCreate SessionCreateOrConnectWithoutUserInput | SessionCreateOrConnectWithoutUserInput[] No
upsert SessionUpsertWithWhereUniqueWithoutUserInput | SessionUpsertWithWhereUniqueWithoutUserInput[] No
createMany SessionCreateManyUserInputEnvelope No
set SessionWhereUniqueInput | SessionWhereUniqueInput[] No
disconnect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
delete SessionWhereUniqueInput | SessionWhereUniqueInput[] No
connect SessionWhereUniqueInput | SessionWhereUniqueInput[] No
update SessionUpdateWithWhereUniqueWithoutUserInput | SessionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany SessionUpdateManyWithWhereWithoutUserInput | SessionUpdateManyWithWhereWithoutUserInput[] No
deleteMany SessionScalarWhereInput | SessionScalarWhereInput[] No

ShareUncheckedUpdateManyWithoutAuthorNestedInput

Name Type Nullable
create ShareCreateWithoutAuthorInput | ShareCreateWithoutAuthorInput[] | ShareUncheckedCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput[] No
connectOrCreate ShareCreateOrConnectWithoutAuthorInput | ShareCreateOrConnectWithoutAuthorInput[] No
upsert ShareUpsertWithWhereUniqueWithoutAuthorInput | ShareUpsertWithWhereUniqueWithoutAuthorInput[] No
createMany ShareCreateManyAuthorInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutAuthorInput | ShareUpdateWithWhereUniqueWithoutAuthorInput[] No
updateMany ShareUpdateManyWithWhereWithoutAuthorInput | ShareUpdateManyWithWhereWithoutAuthorInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

ChatRoomUncheckedUpdateManyWithoutUsersNestedInput

Name Type Nullable
create ChatRoomCreateWithoutUsersInput | ChatRoomCreateWithoutUsersInput[] | ChatRoomUncheckedCreateWithoutUsersInput | ChatRoomUncheckedCreateWithoutUsersInput[] No
connectOrCreate ChatRoomCreateOrConnectWithoutUsersInput | ChatRoomCreateOrConnectWithoutUsersInput[] No
upsert ChatRoomUpsertWithWhereUniqueWithoutUsersInput | ChatRoomUpsertWithWhereUniqueWithoutUsersInput[] No
set ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
disconnect ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
delete ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
connect ChatRoomWhereUniqueInput | ChatRoomWhereUniqueInput[] No
update ChatRoomUpdateWithWhereUniqueWithoutUsersInput | ChatRoomUpdateWithWhereUniqueWithoutUsersInput[] No
updateMany ChatRoomUpdateManyWithWhereWithoutUsersInput | ChatRoomUpdateManyWithWhereWithoutUsersInput[] No
deleteMany ChatRoomScalarWhereInput | ChatRoomScalarWhereInput[] No

BookUncheckedUpdateManyWithoutAuthorsNestedInput

Name Type Nullable
create BookCreateWithoutAuthorsInput | BookCreateWithoutAuthorsInput[] | BookUncheckedCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput[] No
connectOrCreate BookCreateOrConnectWithoutAuthorsInput | BookCreateOrConnectWithoutAuthorsInput[] No
upsert BookUpsertWithWhereUniqueWithoutAuthorsInput | BookUpsertWithWhereUniqueWithoutAuthorsInput[] No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutAuthorsInput | BookUpdateWithWhereUniqueWithoutAuthorsInput[] No
updateMany BookUpdateManyWithWhereWithoutAuthorsInput | BookUpdateManyWithWhereWithoutAuthorsInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No



UserCreateNestedOneWithoutPostsInput

Name Type Nullable
create UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput No
connectOrCreate UserCreateOrConnectWithoutPostsInput No
connect UserWhereUniqueInput No

NewsCreateNestedOneWithoutPostInput

Name Type Nullable
create NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput No
connectOrCreate NewsCreateOrConnectWithoutPostInput No
connect NewsWhereUniqueInput No

PostCreateNestedOneWithoutPost_commentsInput

Name Type Nullable
create PostCreateWithoutPost_commentsInput | PostUncheckedCreateWithoutPost_commentsInput No
connectOrCreate PostCreateOrConnectWithoutPost_commentsInput No
connect PostWhereUniqueInput No





NewsUncheckedCreateNestedOneWithoutPostInput

Name Type Nullable
create NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput No
connectOrCreate NewsCreateOrConnectWithoutPostInput No
connect NewsWhereUniqueInput No



DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

ImageUpdateManyWithoutPostNestedInput

Name Type Nullable
create ImageCreateWithoutPostInput | ImageCreateWithoutPostInput[] | ImageUncheckedCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput[] No
connectOrCreate ImageCreateOrConnectWithoutPostInput | ImageCreateOrConnectWithoutPostInput[] No
upsert ImageUpsertWithWhereUniqueWithoutPostInput | ImageUpsertWithWhereUniqueWithoutPostInput[] No
createMany ImageCreateManyPostInputEnvelope No
set ImageWhereUniqueInput | ImageWhereUniqueInput[] No
disconnect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
delete ImageWhereUniqueInput | ImageWhereUniqueInput[] No
connect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
update ImageUpdateWithWhereUniqueWithoutPostInput | ImageUpdateWithWhereUniqueWithoutPostInput[] No
updateMany ImageUpdateManyWithWhereWithoutPostInput | ImageUpdateManyWithWhereWithoutPostInput[] No
deleteMany ImageScalarWhereInput | ImageScalarWhereInput[] No

LikeUpdateManyWithoutPostNestedInput

Name Type Nullable
create LikeCreateWithoutPostInput | LikeCreateWithoutPostInput[] | LikeUncheckedCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput[] No
connectOrCreate LikeCreateOrConnectWithoutPostInput | LikeCreateOrConnectWithoutPostInput[] No
upsert LikeUpsertWithWhereUniqueWithoutPostInput | LikeUpsertWithWhereUniqueWithoutPostInput[] No
createMany LikeCreateManyPostInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutPostInput | LikeUpdateWithWhereUniqueWithoutPostInput[] No
updateMany LikeUpdateManyWithWhereWithoutPostInput | LikeUpdateManyWithWhereWithoutPostInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No


NewsUpdateOneWithoutPostNestedInput

Name Type Nullable
create NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput No
connectOrCreate NewsCreateOrConnectWithoutPostInput No
upsert NewsUpsertWithoutPostInput No
disconnect Boolean No
delete Boolean No
connect NewsWhereUniqueInput No
update NewsUpdateWithoutPostInput | NewsUncheckedUpdateWithoutPostInput No

PostUpdateOneWithoutPost_commentsNestedInput

Name Type Nullable
create PostCreateWithoutPost_commentsInput | PostUncheckedCreateWithoutPost_commentsInput No
connectOrCreate PostCreateOrConnectWithoutPost_commentsInput No
upsert PostUpsertWithoutPost_commentsInput No
disconnect Boolean No
delete Boolean No
connect PostWhereUniqueInput No
update PostUpdateWithoutPost_commentsInput | PostUncheckedUpdateWithoutPost_commentsInput No

PostUpdateManyWithoutCommentNestedInput

Name Type Nullable
create PostCreateWithoutCommentInput | PostCreateWithoutCommentInput[] | PostUncheckedCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput[] No
connectOrCreate PostCreateOrConnectWithoutCommentInput | PostCreateOrConnectWithoutCommentInput[] No
upsert PostUpsertWithWhereUniqueWithoutCommentInput | PostUpsertWithWhereUniqueWithoutCommentInput[] No
createMany PostCreateManyCommentInputEnvelope No
set PostWhereUniqueInput | PostWhereUniqueInput[] No
disconnect PostWhereUniqueInput | PostWhereUniqueInput[] No
delete PostWhereUniqueInput | PostWhereUniqueInput[] No
connect PostWhereUniqueInput | PostWhereUniqueInput[] No
update PostUpdateWithWhereUniqueWithoutCommentInput | PostUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany PostUpdateManyWithWhereWithoutCommentInput | PostUpdateManyWithWhereWithoutCommentInput[] No
deleteMany PostScalarWhereInput | PostScalarWhereInput[] No

ShareUpdateManyWithoutPostNestedInput

Name Type Nullable
create ShareCreateWithoutPostInput | ShareCreateWithoutPostInput[] | ShareUncheckedCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput[] No
connectOrCreate ShareCreateOrConnectWithoutPostInput | ShareCreateOrConnectWithoutPostInput[] No
upsert ShareUpsertWithWhereUniqueWithoutPostInput | ShareUpsertWithWhereUniqueWithoutPostInput[] No
createMany ShareCreateManyPostInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutPostInput | ShareUpdateWithWhereUniqueWithoutPostInput[] No
updateMany ShareUpdateManyWithWhereWithoutPostInput | ShareUpdateManyWithWhereWithoutPostInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

ImageUncheckedUpdateManyWithoutPostNestedInput

Name Type Nullable
create ImageCreateWithoutPostInput | ImageCreateWithoutPostInput[] | ImageUncheckedCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput[] No
connectOrCreate ImageCreateOrConnectWithoutPostInput | ImageCreateOrConnectWithoutPostInput[] No
upsert ImageUpsertWithWhereUniqueWithoutPostInput | ImageUpsertWithWhereUniqueWithoutPostInput[] No
createMany ImageCreateManyPostInputEnvelope No
set ImageWhereUniqueInput | ImageWhereUniqueInput[] No
disconnect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
delete ImageWhereUniqueInput | ImageWhereUniqueInput[] No
connect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
update ImageUpdateWithWhereUniqueWithoutPostInput | ImageUpdateWithWhereUniqueWithoutPostInput[] No
updateMany ImageUpdateManyWithWhereWithoutPostInput | ImageUpdateManyWithWhereWithoutPostInput[] No
deleteMany ImageScalarWhereInput | ImageScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutPostNestedInput

Name Type Nullable
create LikeCreateWithoutPostInput | LikeCreateWithoutPostInput[] | LikeUncheckedCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput[] No
connectOrCreate LikeCreateOrConnectWithoutPostInput | LikeCreateOrConnectWithoutPostInput[] No
upsert LikeUpsertWithWhereUniqueWithoutPostInput | LikeUpsertWithWhereUniqueWithoutPostInput[] No
createMany LikeCreateManyPostInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutPostInput | LikeUpdateWithWhereUniqueWithoutPostInput[] No
updateMany LikeUpdateManyWithWhereWithoutPostInput | LikeUpdateManyWithWhereWithoutPostInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

NewsUncheckedUpdateOneWithoutPostNestedInput

Name Type Nullable
create NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput No
connectOrCreate NewsCreateOrConnectWithoutPostInput No
upsert NewsUpsertWithoutPostInput No
disconnect Boolean No
delete Boolean No
connect NewsWhereUniqueInput No
update NewsUpdateWithoutPostInput | NewsUncheckedUpdateWithoutPostInput No

PostUncheckedUpdateManyWithoutCommentNestedInput

Name Type Nullable
create PostCreateWithoutCommentInput | PostCreateWithoutCommentInput[] | PostUncheckedCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput[] No
connectOrCreate PostCreateOrConnectWithoutCommentInput | PostCreateOrConnectWithoutCommentInput[] No
upsert PostUpsertWithWhereUniqueWithoutCommentInput | PostUpsertWithWhereUniqueWithoutCommentInput[] No
createMany PostCreateManyCommentInputEnvelope No
set PostWhereUniqueInput | PostWhereUniqueInput[] No
disconnect PostWhereUniqueInput | PostWhereUniqueInput[] No
delete PostWhereUniqueInput | PostWhereUniqueInput[] No
connect PostWhereUniqueInput | PostWhereUniqueInput[] No
update PostUpdateWithWhereUniqueWithoutCommentInput | PostUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany PostUpdateManyWithWhereWithoutCommentInput | PostUpdateManyWithWhereWithoutCommentInput[] No
deleteMany PostScalarWhereInput | PostScalarWhereInput[] No

ShareUncheckedUpdateManyWithoutPostNestedInput

Name Type Nullable
create ShareCreateWithoutPostInput | ShareCreateWithoutPostInput[] | ShareUncheckedCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput[] No
connectOrCreate ShareCreateOrConnectWithoutPostInput | ShareCreateOrConnectWithoutPostInput[] No
upsert ShareUpsertWithWhereUniqueWithoutPostInput | ShareUpsertWithWhereUniqueWithoutPostInput[] No
createMany ShareCreateManyPostInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutPostInput | ShareUpdateWithWhereUniqueWithoutPostInput[] No
updateMany ShareUpdateManyWithWhereWithoutPostInput | ShareUpdateManyWithWhereWithoutPostInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

PostCreateNestedOneWithoutNewsInput

Name Type Nullable
create PostCreateWithoutNewsInput | PostUncheckedCreateWithoutNewsInput No
connectOrCreate PostCreateOrConnectWithoutNewsInput No
connect PostWhereUniqueInput No

EnumAudienceFieldUpdateOperationsInput

Name Type Nullable
set Audience No

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No



CommuneCreateNestedOneWithoutGalleryInput

Name Type Nullable
create CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput No
connectOrCreate CommuneCreateOrConnectWithoutGalleryInput No
connect CommuneWhereUniqueInput No

UserCreateNestedOneWithoutGalleriesInput

Name Type Nullable
create UserCreateWithoutGalleriesInput | UserUncheckedCreateWithoutGalleriesInput No
connectOrCreate UserCreateOrConnectWithoutGalleriesInput No
connect UserWhereUniqueInput No




BookCreateNestedOneWithoutGalleryInput

Name Type Nullable
create BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput No
connectOrCreate BookCreateOrConnectWithoutGalleryInput No
connect BookWhereUniqueInput No

CharacterCreateNestedOneWithoutGalleryInput

Name Type Nullable
create CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput No
connectOrCreate CharacterCreateOrConnectWithoutGalleryInput No
connect CharacterWhereUniqueInput No

ChapterCreateNestedOneWithoutGalleryInput

Name Type Nullable
create ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput No
connectOrCreate ChapterCreateOrConnectWithoutGalleryInput No
connect ChapterWhereUniqueInput No


CommuneUncheckedCreateNestedOneWithoutGalleryInput

Name Type Nullable
create CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput No
connectOrCreate CommuneCreateOrConnectWithoutGalleryInput No
connect CommuneWhereUniqueInput No




BookUncheckedCreateNestedOneWithoutGalleryInput

Name Type Nullable
create BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput No
connectOrCreate BookCreateOrConnectWithoutGalleryInput No
connect BookWhereUniqueInput No

CharacterUncheckedCreateNestedOneWithoutGalleryInput

Name Type Nullable
create CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput No
connectOrCreate CharacterCreateOrConnectWithoutGalleryInput No
connect CharacterWhereUniqueInput No

ChapterUncheckedCreateNestedOneWithoutGalleryInput

Name Type Nullable
create ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput No
connectOrCreate ChapterCreateOrConnectWithoutGalleryInput No
connect ChapterWhereUniqueInput No

BlockUpdateManyWithoutBlockedGalleryNestedInput

Name Type Nullable
create BlockCreateWithoutBlockedGalleryInput | BlockCreateWithoutBlockedGalleryInput[] | BlockUncheckedCreateWithoutBlockedGalleryInput | BlockUncheckedCreateWithoutBlockedGalleryInput[] No
connectOrCreate BlockCreateOrConnectWithoutBlockedGalleryInput | BlockCreateOrConnectWithoutBlockedGalleryInput[] No
upsert BlockUpsertWithWhereUniqueWithoutBlockedGalleryInput | BlockUpsertWithWhereUniqueWithoutBlockedGalleryInput[] No
createMany BlockCreateManyBlockedGalleryInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutBlockedGalleryInput | BlockUpdateWithWhereUniqueWithoutBlockedGalleryInput[] No
updateMany BlockUpdateManyWithWhereWithoutBlockedGalleryInput | BlockUpdateManyWithWhereWithoutBlockedGalleryInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

CommuneUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput No
connectOrCreate CommuneCreateOrConnectWithoutGalleryInput No
upsert CommuneUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect CommuneWhereUniqueInput No
update CommuneUpdateWithoutGalleryInput | CommuneUncheckedUpdateWithoutGalleryInput No


ImageUpdateManyWithoutGalleryNestedInput

Name Type Nullable
create ImageCreateWithoutGalleryInput | ImageCreateWithoutGalleryInput[] | ImageUncheckedCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput[] No
connectOrCreate ImageCreateOrConnectWithoutGalleryInput | ImageCreateOrConnectWithoutGalleryInput[] No
upsert ImageUpsertWithWhereUniqueWithoutGalleryInput | ImageUpsertWithWhereUniqueWithoutGalleryInput[] No
createMany ImageCreateManyGalleryInputEnvelope No
set ImageWhereUniqueInput | ImageWhereUniqueInput[] No
disconnect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
delete ImageWhereUniqueInput | ImageWhereUniqueInput[] No
connect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
update ImageUpdateWithWhereUniqueWithoutGalleryInput | ImageUpdateWithWhereUniqueWithoutGalleryInput[] No
updateMany ImageUpdateManyWithWhereWithoutGalleryInput | ImageUpdateManyWithWhereWithoutGalleryInput[] No
deleteMany ImageScalarWhereInput | ImageScalarWhereInput[] No

LikeUpdateManyWithoutGalleryNestedInput

Name Type Nullable
create LikeCreateWithoutGalleryInput | LikeCreateWithoutGalleryInput[] | LikeUncheckedCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput[] No
connectOrCreate LikeCreateOrConnectWithoutGalleryInput | LikeCreateOrConnectWithoutGalleryInput[] No
upsert LikeUpsertWithWhereUniqueWithoutGalleryInput | LikeUpsertWithWhereUniqueWithoutGalleryInput[] No
createMany LikeCreateManyGalleryInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutGalleryInput | LikeUpdateWithWhereUniqueWithoutGalleryInput[] No
updateMany LikeUpdateManyWithWhereWithoutGalleryInput | LikeUpdateManyWithWhereWithoutGalleryInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

ShareUpdateManyWithoutGalleryNestedInput

Name Type Nullable
create ShareCreateWithoutGalleryInput | ShareCreateWithoutGalleryInput[] | ShareUncheckedCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput[] No
connectOrCreate ShareCreateOrConnectWithoutGalleryInput | ShareCreateOrConnectWithoutGalleryInput[] No
upsert ShareUpsertWithWhereUniqueWithoutGalleryInput | ShareUpsertWithWhereUniqueWithoutGalleryInput[] No
createMany ShareCreateManyGalleryInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutGalleryInput | ShareUpdateWithWhereUniqueWithoutGalleryInput[] No
updateMany ShareUpdateManyWithWhereWithoutGalleryInput | ShareUpdateManyWithWhereWithoutGalleryInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

BookUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput No
connectOrCreate BookCreateOrConnectWithoutGalleryInput No
upsert BookUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect BookWhereUniqueInput No
update BookUpdateWithoutGalleryInput | BookUncheckedUpdateWithoutGalleryInput No

CharacterUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput No
connectOrCreate CharacterCreateOrConnectWithoutGalleryInput No
upsert CharacterUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect CharacterWhereUniqueInput No
update CharacterUpdateWithoutGalleryInput | CharacterUncheckedUpdateWithoutGalleryInput No

ChapterUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput No
connectOrCreate ChapterCreateOrConnectWithoutGalleryInput No
upsert ChapterUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect ChapterWhereUniqueInput No
update ChapterUpdateWithoutGalleryInput | ChapterUncheckedUpdateWithoutGalleryInput No

BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput

Name Type Nullable
create BlockCreateWithoutBlockedGalleryInput | BlockCreateWithoutBlockedGalleryInput[] | BlockUncheckedCreateWithoutBlockedGalleryInput | BlockUncheckedCreateWithoutBlockedGalleryInput[] No
connectOrCreate BlockCreateOrConnectWithoutBlockedGalleryInput | BlockCreateOrConnectWithoutBlockedGalleryInput[] No
upsert BlockUpsertWithWhereUniqueWithoutBlockedGalleryInput | BlockUpsertWithWhereUniqueWithoutBlockedGalleryInput[] No
createMany BlockCreateManyBlockedGalleryInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutBlockedGalleryInput | BlockUpdateWithWhereUniqueWithoutBlockedGalleryInput[] No
updateMany BlockUpdateManyWithWhereWithoutBlockedGalleryInput | BlockUpdateManyWithWhereWithoutBlockedGalleryInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

CommuneUncheckedUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput No
connectOrCreate CommuneCreateOrConnectWithoutGalleryInput No
upsert CommuneUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect CommuneWhereUniqueInput No
update CommuneUpdateWithoutGalleryInput | CommuneUncheckedUpdateWithoutGalleryInput No

ImageUncheckedUpdateManyWithoutGalleryNestedInput

Name Type Nullable
create ImageCreateWithoutGalleryInput | ImageCreateWithoutGalleryInput[] | ImageUncheckedCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput[] No
connectOrCreate ImageCreateOrConnectWithoutGalleryInput | ImageCreateOrConnectWithoutGalleryInput[] No
upsert ImageUpsertWithWhereUniqueWithoutGalleryInput | ImageUpsertWithWhereUniqueWithoutGalleryInput[] No
createMany ImageCreateManyGalleryInputEnvelope No
set ImageWhereUniqueInput | ImageWhereUniqueInput[] No
disconnect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
delete ImageWhereUniqueInput | ImageWhereUniqueInput[] No
connect ImageWhereUniqueInput | ImageWhereUniqueInput[] No
update ImageUpdateWithWhereUniqueWithoutGalleryInput | ImageUpdateWithWhereUniqueWithoutGalleryInput[] No
updateMany ImageUpdateManyWithWhereWithoutGalleryInput | ImageUpdateManyWithWhereWithoutGalleryInput[] No
deleteMany ImageScalarWhereInput | ImageScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutGalleryNestedInput

Name Type Nullable
create LikeCreateWithoutGalleryInput | LikeCreateWithoutGalleryInput[] | LikeUncheckedCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput[] No
connectOrCreate LikeCreateOrConnectWithoutGalleryInput | LikeCreateOrConnectWithoutGalleryInput[] No
upsert LikeUpsertWithWhereUniqueWithoutGalleryInput | LikeUpsertWithWhereUniqueWithoutGalleryInput[] No
createMany LikeCreateManyGalleryInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutGalleryInput | LikeUpdateWithWhereUniqueWithoutGalleryInput[] No
updateMany LikeUpdateManyWithWhereWithoutGalleryInput | LikeUpdateManyWithWhereWithoutGalleryInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

ShareUncheckedUpdateManyWithoutGalleryNestedInput

Name Type Nullable
create ShareCreateWithoutGalleryInput | ShareCreateWithoutGalleryInput[] | ShareUncheckedCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput[] No
connectOrCreate ShareCreateOrConnectWithoutGalleryInput | ShareCreateOrConnectWithoutGalleryInput[] No
upsert ShareUpsertWithWhereUniqueWithoutGalleryInput | ShareUpsertWithWhereUniqueWithoutGalleryInput[] No
createMany ShareCreateManyGalleryInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutGalleryInput | ShareUpdateWithWhereUniqueWithoutGalleryInput[] No
updateMany ShareUpdateManyWithWhereWithoutGalleryInput | ShareUpdateManyWithWhereWithoutGalleryInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

BookUncheckedUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput No
connectOrCreate BookCreateOrConnectWithoutGalleryInput No
upsert BookUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect BookWhereUniqueInput No
update BookUpdateWithoutGalleryInput | BookUncheckedUpdateWithoutGalleryInput No

CharacterUncheckedUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput No
connectOrCreate CharacterCreateOrConnectWithoutGalleryInput No
upsert CharacterUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect CharacterWhereUniqueInput No
update CharacterUpdateWithoutGalleryInput | CharacterUncheckedUpdateWithoutGalleryInput No

ChapterUncheckedUpdateOneWithoutGalleryNestedInput

Name Type Nullable
create ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput No
connectOrCreate ChapterCreateOrConnectWithoutGalleryInput No
upsert ChapterUpsertWithoutGalleryInput No
disconnect Boolean No
delete Boolean No
connect ChapterWhereUniqueInput No
update ChapterUpdateWithoutGalleryInput | ChapterUncheckedUpdateWithoutGalleryInput No

UserCreateNestedOneWithoutImagesInput

Name Type Nullable
create UserCreateWithoutImagesInput | UserUncheckedCreateWithoutImagesInput No
connectOrCreate UserCreateOrConnectWithoutImagesInput No
connect UserWhereUniqueInput No

GalleryCreateNestedOneWithoutImagesInput

Name Type Nullable
create GalleryCreateWithoutImagesInput | GalleryUncheckedCreateWithoutImagesInput No
connectOrCreate GalleryCreateOrConnectWithoutImagesInput No
connect GalleryWhereUniqueInput No

PostCreateNestedOneWithoutImagesInput

Name Type Nullable
create PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput No
connectOrCreate PostCreateOrConnectWithoutImagesInput No
connect PostWhereUniqueInput No





NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No


GalleryUpdateOneWithoutImagesNestedInput

Name Type Nullable
create GalleryCreateWithoutImagesInput | GalleryUncheckedCreateWithoutImagesInput No
connectOrCreate GalleryCreateOrConnectWithoutImagesInput No
upsert GalleryUpsertWithoutImagesInput No
disconnect Boolean No
delete Boolean No
connect GalleryWhereUniqueInput No
update GalleryUpdateWithoutImagesInput | GalleryUncheckedUpdateWithoutImagesInput No

PostUpdateOneWithoutImagesNestedInput

Name Type Nullable
create PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput No
connectOrCreate PostCreateOrConnectWithoutImagesInput No
upsert PostUpsertWithoutImagesInput No
disconnect Boolean No
delete Boolean No
connect PostWhereUniqueInput No
update PostUpdateWithoutImagesInput | PostUncheckedUpdateWithoutImagesInput No

LikeUpdateManyWithoutImageNestedInput

Name Type Nullable
create LikeCreateWithoutImageInput | LikeCreateWithoutImageInput[] | LikeUncheckedCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput[] No
connectOrCreate LikeCreateOrConnectWithoutImageInput | LikeCreateOrConnectWithoutImageInput[] No
upsert LikeUpsertWithWhereUniqueWithoutImageInput | LikeUpsertWithWhereUniqueWithoutImageInput[] No
createMany LikeCreateManyImageInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutImageInput | LikeUpdateWithWhereUniqueWithoutImageInput[] No
updateMany LikeUpdateManyWithWhereWithoutImageInput | LikeUpdateManyWithWhereWithoutImageInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

ShareUpdateManyWithoutImageNestedInput

Name Type Nullable
create ShareCreateWithoutImageInput | ShareCreateWithoutImageInput[] | ShareUncheckedCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput[] No
connectOrCreate ShareCreateOrConnectWithoutImageInput | ShareCreateOrConnectWithoutImageInput[] No
upsert ShareUpsertWithWhereUniqueWithoutImageInput | ShareUpsertWithWhereUniqueWithoutImageInput[] No
createMany ShareCreateManyImageInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutImageInput | ShareUpdateWithWhereUniqueWithoutImageInput[] No
updateMany ShareUpdateManyWithWhereWithoutImageInput | ShareUpdateManyWithWhereWithoutImageInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutImageNestedInput

Name Type Nullable
create LikeCreateWithoutImageInput | LikeCreateWithoutImageInput[] | LikeUncheckedCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput[] No
connectOrCreate LikeCreateOrConnectWithoutImageInput | LikeCreateOrConnectWithoutImageInput[] No
upsert LikeUpsertWithWhereUniqueWithoutImageInput | LikeUpsertWithWhereUniqueWithoutImageInput[] No
createMany LikeCreateManyImageInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutImageInput | LikeUpdateWithWhereUniqueWithoutImageInput[] No
updateMany LikeUpdateManyWithWhereWithoutImageInput | LikeUpdateManyWithWhereWithoutImageInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

ShareUncheckedUpdateManyWithoutImageNestedInput

Name Type Nullable
create ShareCreateWithoutImageInput | ShareCreateWithoutImageInput[] | ShareUncheckedCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput[] No
connectOrCreate ShareCreateOrConnectWithoutImageInput | ShareCreateOrConnectWithoutImageInput[] No
upsert ShareUpsertWithWhereUniqueWithoutImageInput | ShareUpsertWithWhereUniqueWithoutImageInput[] No
createMany ShareCreateManyImageInputEnvelope No
set ShareWhereUniqueInput | ShareWhereUniqueInput[] No
disconnect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
delete ShareWhereUniqueInput | ShareWhereUniqueInput[] No
connect ShareWhereUniqueInput | ShareWhereUniqueInput[] No
update ShareUpdateWithWhereUniqueWithoutImageInput | ShareUpdateWithWhereUniqueWithoutImageInput[] No
updateMany ShareUpdateManyWithWhereWithoutImageInput | ShareUpdateManyWithWhereWithoutImageInput[] No
deleteMany ShareScalarWhereInput | ShareScalarWhereInput[] No

UserCreateNestedOneWithoutLikesInput

Name Type Nullable
create UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput No
connectOrCreate UserCreateOrConnectWithoutLikesInput No
connect UserWhereUniqueInput No

CommentCreateNestedOneWithoutLikesInput

Name Type Nullable
create CommentCreateWithoutLikesInput | CommentUncheckedCreateWithoutLikesInput No
connectOrCreate CommentCreateOrConnectWithoutLikesInput No
connect CommentWhereUniqueInput No

GalleryCreateNestedOneWithoutLikesInput

Name Type Nullable
create GalleryCreateWithoutLikesInput | GalleryUncheckedCreateWithoutLikesInput No
connectOrCreate GalleryCreateOrConnectWithoutLikesInput No
connect GalleryWhereUniqueInput No

ImageCreateNestedOneWithoutLikesInput

Name Type Nullable
create ImageCreateWithoutLikesInput | ImageUncheckedCreateWithoutLikesInput No
connectOrCreate ImageCreateOrConnectWithoutLikesInput No
connect ImageWhereUniqueInput No

PostCreateNestedOneWithoutLikesInput

Name Type Nullable
create PostCreateWithoutLikesInput | PostUncheckedCreateWithoutLikesInput No
connectOrCreate PostCreateOrConnectWithoutLikesInput No
connect PostWhereUniqueInput No

CharacterCreateNestedOneWithoutLikesInput

Name Type Nullable
create CharacterCreateWithoutLikesInput | CharacterUncheckedCreateWithoutLikesInput No
connectOrCreate CharacterCreateOrConnectWithoutLikesInput No
connect CharacterWhereUniqueInput No

BookCreateNestedOneWithoutLikesInput

Name Type Nullable
create BookCreateWithoutLikesInput | BookUncheckedCreateWithoutLikesInput No
connectOrCreate BookCreateOrConnectWithoutLikesInput No
connect BookWhereUniqueInput No


CommentUpdateOneWithoutLikesNestedInput

Name Type Nullable
create CommentCreateWithoutLikesInput | CommentUncheckedCreateWithoutLikesInput No
connectOrCreate CommentCreateOrConnectWithoutLikesInput No
upsert CommentUpsertWithoutLikesInput No
disconnect Boolean No
delete Boolean No
connect CommentWhereUniqueInput No
update CommentUpdateWithoutLikesInput | CommentUncheckedUpdateWithoutLikesInput No

GalleryUpdateOneWithoutLikesNestedInput

Name Type Nullable
create GalleryCreateWithoutLikesInput | GalleryUncheckedCreateWithoutLikesInput No
connectOrCreate GalleryCreateOrConnectWithoutLikesInput No
upsert GalleryUpsertWithoutLikesInput No
disconnect Boolean No
delete Boolean No
connect GalleryWhereUniqueInput No
update GalleryUpdateWithoutLikesInput | GalleryUncheckedUpdateWithoutLikesInput No

ImageUpdateOneWithoutLikesNestedInput

Name Type Nullable
create ImageCreateWithoutLikesInput | ImageUncheckedCreateWithoutLikesInput No
connectOrCreate ImageCreateOrConnectWithoutLikesInput No
upsert ImageUpsertWithoutLikesInput No
disconnect Boolean No
delete Boolean No
connect ImageWhereUniqueInput No
update ImageUpdateWithoutLikesInput | ImageUncheckedUpdateWithoutLikesInput No

PostUpdateOneWithoutLikesNestedInput

Name Type Nullable
create PostCreateWithoutLikesInput | PostUncheckedCreateWithoutLikesInput No
connectOrCreate PostCreateOrConnectWithoutLikesInput No
upsert PostUpsertWithoutLikesInput No
disconnect Boolean No
delete Boolean No
connect PostWhereUniqueInput No
update PostUpdateWithoutLikesInput | PostUncheckedUpdateWithoutLikesInput No

CharacterUpdateOneWithoutLikesNestedInput

Name Type Nullable
create CharacterCreateWithoutLikesInput | CharacterUncheckedCreateWithoutLikesInput No
connectOrCreate CharacterCreateOrConnectWithoutLikesInput No
upsert CharacterUpsertWithoutLikesInput No
disconnect Boolean No
delete Boolean No
connect CharacterWhereUniqueInput No
update CharacterUpdateWithoutLikesInput | CharacterUncheckedUpdateWithoutLikesInput No

BookUpdateOneWithoutLikesNestedInput

Name Type Nullable
create BookCreateWithoutLikesInput | BookUncheckedCreateWithoutLikesInput No
connectOrCreate BookCreateOrConnectWithoutLikesInput No
upsert BookUpsertWithoutLikesInput No
disconnect Boolean No
delete Boolean No
connect BookWhereUniqueInput No
update BookUpdateWithoutLikesInput | BookUncheckedUpdateWithoutLikesInput No

UserCreateNestedOneWithoutSharesInput

Name Type Nullable
create UserCreateWithoutSharesInput | UserUncheckedCreateWithoutSharesInput No
connectOrCreate UserCreateOrConnectWithoutSharesInput No
connect UserWhereUniqueInput No

GalleryCreateNestedOneWithoutSharesInput

Name Type Nullable
create GalleryCreateWithoutSharesInput | GalleryUncheckedCreateWithoutSharesInput No
connectOrCreate GalleryCreateOrConnectWithoutSharesInput No
connect GalleryWhereUniqueInput No

ImageCreateNestedOneWithoutSharesInput

Name Type Nullable
create ImageCreateWithoutSharesInput | ImageUncheckedCreateWithoutSharesInput No
connectOrCreate ImageCreateOrConnectWithoutSharesInput No
connect ImageWhereUniqueInput No

PostCreateNestedOneWithoutSharesInput

Name Type Nullable
create PostCreateWithoutSharesInput | PostUncheckedCreateWithoutSharesInput No
connectOrCreate PostCreateOrConnectWithoutSharesInput No
connect PostWhereUniqueInput No


GalleryUpdateOneWithoutSharesNestedInput

Name Type Nullable
create GalleryCreateWithoutSharesInput | GalleryUncheckedCreateWithoutSharesInput No
connectOrCreate GalleryCreateOrConnectWithoutSharesInput No
upsert GalleryUpsertWithoutSharesInput No
disconnect Boolean No
delete Boolean No
connect GalleryWhereUniqueInput No
update GalleryUpdateWithoutSharesInput | GalleryUncheckedUpdateWithoutSharesInput No

ImageUpdateOneWithoutSharesNestedInput

Name Type Nullable
create ImageCreateWithoutSharesInput | ImageUncheckedCreateWithoutSharesInput No
connectOrCreate ImageCreateOrConnectWithoutSharesInput No
upsert ImageUpsertWithoutSharesInput No
disconnect Boolean No
delete Boolean No
connect ImageWhereUniqueInput No
update ImageUpdateWithoutSharesInput | ImageUncheckedUpdateWithoutSharesInput No

PostUpdateOneWithoutSharesNestedInput

Name Type Nullable
create PostCreateWithoutSharesInput | PostUncheckedCreateWithoutSharesInput No
connectOrCreate PostCreateOrConnectWithoutSharesInput No
upsert PostUpsertWithoutSharesInput No
disconnect Boolean No
delete Boolean No
connect PostWhereUniqueInput No
update PostUpdateWithoutSharesInput | PostUncheckedUpdateWithoutSharesInput No

UserCreateNestedOneWithoutFollowerInput

Name Type Nullable
create UserCreateWithoutFollowerInput | UserUncheckedCreateWithoutFollowerInput No
connectOrCreate UserCreateOrConnectWithoutFollowerInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutFollowingInput

Name Type Nullable
create UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput No
connectOrCreate UserCreateOrConnectWithoutFollowingInput No
connect UserWhereUniqueInput No

CharacterCreateNestedOneWithoutFansInput

Name Type Nullable
create CharacterCreateWithoutFansInput | CharacterUncheckedCreateWithoutFansInput No
connectOrCreate CharacterCreateOrConnectWithoutFansInput No
connect CharacterWhereUniqueInput No

BookCreateNestedOneWithoutFansInput

Name Type Nullable
create BookCreateWithoutFansInput | BookUncheckedCreateWithoutFansInput No
connectOrCreate BookCreateOrConnectWithoutFansInput No
connect BookWhereUniqueInput No


UserUpdateOneWithoutFollowingNestedInput

Name Type Nullable
create UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput No
connectOrCreate UserCreateOrConnectWithoutFollowingInput No
upsert UserUpsertWithoutFollowingInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutFollowingInput | UserUncheckedUpdateWithoutFollowingInput No

CharacterUpdateOneWithoutFansNestedInput

Name Type Nullable
create CharacterCreateWithoutFansInput | CharacterUncheckedCreateWithoutFansInput No
connectOrCreate CharacterCreateOrConnectWithoutFansInput No
upsert CharacterUpsertWithoutFansInput No
disconnect Boolean No
delete Boolean No
connect CharacterWhereUniqueInput No
update CharacterUpdateWithoutFansInput | CharacterUncheckedUpdateWithoutFansInput No

BookUpdateOneWithoutFansNestedInput

Name Type Nullable
create BookCreateWithoutFansInput | BookUncheckedCreateWithoutFansInput No
connectOrCreate BookCreateOrConnectWithoutFansInput No
upsert BookUpsertWithoutFansInput No
disconnect Boolean No
delete Boolean No
connect BookWhereUniqueInput No
update BookUpdateWithoutFansInput | BookUncheckedUpdateWithoutFansInput No

UserCreateNestedOneWithoutFanOfInput

Name Type Nullable
create UserCreateWithoutFanOfInput | UserUncheckedCreateWithoutFanOfInput No
connectOrCreate UserCreateOrConnectWithoutFanOfInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutFansInput

Name Type Nullable
create UserCreateWithoutFansInput | UserUncheckedCreateWithoutFansInput No
connectOrCreate UserCreateOrConnectWithoutFansInput No
connect UserWhereUniqueInput No







ChatMessageUpdateManyWithoutChatRoomNestedInput

Name Type Nullable
create ChatMessageCreateWithoutChatRoomInput | ChatMessageCreateWithoutChatRoomInput[] | ChatMessageUncheckedCreateWithoutChatRoomInput | ChatMessageUncheckedCreateWithoutChatRoomInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutChatRoomInput | ChatMessageCreateOrConnectWithoutChatRoomInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutChatRoomInput | ChatMessageUpsertWithWhereUniqueWithoutChatRoomInput[] No
createMany ChatMessageCreateManyChatRoomInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutChatRoomInput | ChatMessageUpdateWithWhereUniqueWithoutChatRoomInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutChatRoomInput | ChatMessageUpdateManyWithWhereWithoutChatRoomInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

UserUpdateManyWithoutChatsNestedInput

Name Type Nullable
create UserCreateWithoutChatsInput | UserCreateWithoutChatsInput[] | UserUncheckedCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput[] No
connectOrCreate UserCreateOrConnectWithoutChatsInput | UserCreateOrConnectWithoutChatsInput[] No
upsert UserUpsertWithWhereUniqueWithoutChatsInput | UserUpsertWithWhereUniqueWithoutChatsInput[] No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutChatsInput | UserUpdateWithWhereUniqueWithoutChatsInput[] No
updateMany UserUpdateManyWithWhereWithoutChatsInput | UserUpdateManyWithWhereWithoutChatsInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

ChatMessageUncheckedUpdateManyWithoutChatRoomNestedInput

Name Type Nullable
create ChatMessageCreateWithoutChatRoomInput | ChatMessageCreateWithoutChatRoomInput[] | ChatMessageUncheckedCreateWithoutChatRoomInput | ChatMessageUncheckedCreateWithoutChatRoomInput[] No
connectOrCreate ChatMessageCreateOrConnectWithoutChatRoomInput | ChatMessageCreateOrConnectWithoutChatRoomInput[] No
upsert ChatMessageUpsertWithWhereUniqueWithoutChatRoomInput | ChatMessageUpsertWithWhereUniqueWithoutChatRoomInput[] No
createMany ChatMessageCreateManyChatRoomInputEnvelope No
set ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
disconnect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
delete ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
connect ChatMessageWhereUniqueInput | ChatMessageWhereUniqueInput[] No
update ChatMessageUpdateWithWhereUniqueWithoutChatRoomInput | ChatMessageUpdateWithWhereUniqueWithoutChatRoomInput[] No
updateMany ChatMessageUpdateManyWithWhereWithoutChatRoomInput | ChatMessageUpdateManyWithWhereWithoutChatRoomInput[] No
deleteMany ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No

UserUncheckedUpdateManyWithoutChatsNestedInput

Name Type Nullable
create UserCreateWithoutChatsInput | UserCreateWithoutChatsInput[] | UserUncheckedCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput[] No
connectOrCreate UserCreateOrConnectWithoutChatsInput | UserCreateOrConnectWithoutChatsInput[] No
upsert UserUpsertWithWhereUniqueWithoutChatsInput | UserUpsertWithWhereUniqueWithoutChatsInput[] No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutChatsInput | UserUpdateWithWhereUniqueWithoutChatsInput[] No
updateMany UserUpdateManyWithWhereWithoutChatsInput | UserUpdateManyWithWhereWithoutChatsInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

UserCreateNestedOneWithoutChatMessagesInput

Name Type Nullable
create UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput No
connectOrCreate UserCreateOrConnectWithoutChatMessagesInput No
connect UserWhereUniqueInput No

ChatRoomCreateNestedOneWithoutMessagesInput

Name Type Nullable
create ChatRoomCreateWithoutMessagesInput | ChatRoomUncheckedCreateWithoutMessagesInput No
connectOrCreate ChatRoomCreateOrConnectWithoutMessagesInput No
connect ChatRoomWhereUniqueInput No





CommuneCreateNestedOneWithoutThreadInput

Name Type Nullable
create CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput No
connectOrCreate CommuneCreateOrConnectWithoutThreadInput No
connect CommuneWhereUniqueInput No



CommuneUncheckedCreateNestedOneWithoutThreadInput

Name Type Nullable
create CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput No
connectOrCreate CommuneCreateOrConnectWithoutThreadInput No
connect CommuneWhereUniqueInput No

EnumEntityFieldUpdateOperationsInput

Name Type Nullable
set Entity No

EnumRoleFieldUpdateOperationsInput

Name Type Nullable
set Role No

BlockUpdateManyWithoutBlockedThreadNestedInput

Name Type Nullable
create BlockCreateWithoutBlockedThreadInput | BlockCreateWithoutBlockedThreadInput[] | BlockUncheckedCreateWithoutBlockedThreadInput | BlockUncheckedCreateWithoutBlockedThreadInput[] No
connectOrCreate BlockCreateOrConnectWithoutBlockedThreadInput | BlockCreateOrConnectWithoutBlockedThreadInput[] No
upsert BlockUpsertWithWhereUniqueWithoutBlockedThreadInput | BlockUpsertWithWhereUniqueWithoutBlockedThreadInput[] No
createMany BlockCreateManyBlockedThreadInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutBlockedThreadInput | BlockUpdateWithWhereUniqueWithoutBlockedThreadInput[] No
updateMany BlockUpdateManyWithWhereWithoutBlockedThreadInput | BlockUpdateManyWithWhereWithoutBlockedThreadInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

CommentUpdateManyWithoutThreadNestedInput

Name Type Nullable
create CommentCreateWithoutThreadInput | CommentCreateWithoutThreadInput[] | CommentUncheckedCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput[] No
connectOrCreate CommentCreateOrConnectWithoutThreadInput | CommentCreateOrConnectWithoutThreadInput[] No
upsert CommentUpsertWithWhereUniqueWithoutThreadInput | CommentUpsertWithWhereUniqueWithoutThreadInput[] No
createMany CommentCreateManyThreadInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutThreadInput | CommentUpdateWithWhereUniqueWithoutThreadInput[] No
updateMany CommentUpdateManyWithWhereWithoutThreadInput | CommentUpdateManyWithWhereWithoutThreadInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

CommuneUpdateOneWithoutThreadNestedInput

Name Type Nullable
create CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput No
connectOrCreate CommuneCreateOrConnectWithoutThreadInput No
upsert CommuneUpsertWithoutThreadInput No
disconnect Boolean No
delete Boolean No
connect CommuneWhereUniqueInput No
update CommuneUpdateWithoutThreadInput | CommuneUncheckedUpdateWithoutThreadInput No

BlockUncheckedUpdateManyWithoutBlockedThreadNestedInput

Name Type Nullable
create BlockCreateWithoutBlockedThreadInput | BlockCreateWithoutBlockedThreadInput[] | BlockUncheckedCreateWithoutBlockedThreadInput | BlockUncheckedCreateWithoutBlockedThreadInput[] No
connectOrCreate BlockCreateOrConnectWithoutBlockedThreadInput | BlockCreateOrConnectWithoutBlockedThreadInput[] No
upsert BlockUpsertWithWhereUniqueWithoutBlockedThreadInput | BlockUpsertWithWhereUniqueWithoutBlockedThreadInput[] No
createMany BlockCreateManyBlockedThreadInputEnvelope No
set BlockWhereUniqueInput | BlockWhereUniqueInput[] No
disconnect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
delete BlockWhereUniqueInput | BlockWhereUniqueInput[] No
connect BlockWhereUniqueInput | BlockWhereUniqueInput[] No
update BlockUpdateWithWhereUniqueWithoutBlockedThreadInput | BlockUpdateWithWhereUniqueWithoutBlockedThreadInput[] No
updateMany BlockUpdateManyWithWhereWithoutBlockedThreadInput | BlockUpdateManyWithWhereWithoutBlockedThreadInput[] No
deleteMany BlockScalarWhereInput | BlockScalarWhereInput[] No

CommentUncheckedUpdateManyWithoutThreadNestedInput

Name Type Nullable
create CommentCreateWithoutThreadInput | CommentCreateWithoutThreadInput[] | CommentUncheckedCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput[] No
connectOrCreate CommentCreateOrConnectWithoutThreadInput | CommentCreateOrConnectWithoutThreadInput[] No
upsert CommentUpsertWithWhereUniqueWithoutThreadInput | CommentUpsertWithWhereUniqueWithoutThreadInput[] No
createMany CommentCreateManyThreadInputEnvelope No
set CommentWhereUniqueInput | CommentWhereUniqueInput[] No
disconnect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
delete CommentWhereUniqueInput | CommentWhereUniqueInput[] No
connect CommentWhereUniqueInput | CommentWhereUniqueInput[] No
update CommentUpdateWithWhereUniqueWithoutThreadInput | CommentUpdateWithWhereUniqueWithoutThreadInput[] No
updateMany CommentUpdateManyWithWhereWithoutThreadInput | CommentUpdateManyWithWhereWithoutThreadInput[] No
deleteMany CommentScalarWhereInput | CommentScalarWhereInput[] No

CommuneUncheckedUpdateOneWithoutThreadNestedInput

Name Type Nullable
create CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput No
connectOrCreate CommuneCreateOrConnectWithoutThreadInput No
upsert CommuneUpsertWithoutThreadInput No
disconnect Boolean No
delete Boolean No
connect CommuneWhereUniqueInput No
update CommuneUpdateWithoutThreadInput | CommuneUncheckedUpdateWithoutThreadInput No

UserCreateNestedOneWithoutCommentsInput

Name Type Nullable
create UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput No
connectOrCreate UserCreateOrConnectWithoutCommentsInput No
connect UserWhereUniqueInput No

CommentThreadCreateNestedOneWithoutCommentsInput

Name Type Nullable
create CommentThreadCreateWithoutCommentsInput | CommentThreadUncheckedCreateWithoutCommentsInput No
connectOrCreate CommentThreadCreateOrConnectWithoutCommentsInput No
connect CommentThreadWhereUniqueInput No





LikeUpdateManyWithoutCommentNestedInput

Name Type Nullable
create LikeCreateWithoutCommentInput | LikeCreateWithoutCommentInput[] | LikeUncheckedCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput[] No
connectOrCreate LikeCreateOrConnectWithoutCommentInput | LikeCreateOrConnectWithoutCommentInput[] No
upsert LikeUpsertWithWhereUniqueWithoutCommentInput | LikeUpsertWithWhereUniqueWithoutCommentInput[] No
createMany LikeCreateManyCommentInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutCommentInput | LikeUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany LikeUpdateManyWithWhereWithoutCommentInput | LikeUpdateManyWithWhereWithoutCommentInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutCommentNestedInput

Name Type Nullable
create LikeCreateWithoutCommentInput | LikeCreateWithoutCommentInput[] | LikeUncheckedCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput[] No
connectOrCreate LikeCreateOrConnectWithoutCommentInput | LikeCreateOrConnectWithoutCommentInput[] No
upsert LikeUpsertWithWhereUniqueWithoutCommentInput | LikeUpsertWithWhereUniqueWithoutCommentInput[] No
createMany LikeCreateManyCommentInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutCommentInput | LikeUpdateWithWhereUniqueWithoutCommentInput[] No
updateMany LikeUpdateManyWithWhereWithoutCommentInput | LikeUpdateManyWithWhereWithoutCommentInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

GalleryCreateNestedOneWithoutCommuneInput

Name Type Nullable
create GalleryCreateWithoutCommuneInput | GalleryUncheckedCreateWithoutCommuneInput No
connectOrCreate GalleryCreateOrConnectWithoutCommuneInput No
connect GalleryWhereUniqueInput No

UserCreateNestedOneWithoutOwnedCommunesInput

Name Type Nullable
create UserCreateWithoutOwnedCommunesInput | UserUncheckedCreateWithoutOwnedCommunesInput No
connectOrCreate UserCreateOrConnectWithoutOwnedCommunesInput No
connect UserWhereUniqueInput No

CommentThreadCreateNestedOneWithoutCommuneInput

Name Type Nullable
create CommentThreadCreateWithoutCommuneInput | CommentThreadUncheckedCreateWithoutCommuneInput No
connectOrCreate CommentThreadCreateOrConnectWithoutCommuneInput No
connect CommentThreadWhereUniqueInput No



GalleryUpdateOneWithoutCommuneNestedInput

Name Type Nullable
create GalleryCreateWithoutCommuneInput | GalleryUncheckedCreateWithoutCommuneInput No
connectOrCreate GalleryCreateOrConnectWithoutCommuneInput No
upsert GalleryUpsertWithoutCommuneInput No
disconnect Boolean No
delete Boolean No
connect GalleryWhereUniqueInput No
update GalleryUpdateWithoutCommuneInput | GalleryUncheckedUpdateWithoutCommuneInput No



CommuneUserUpdateManyWithoutCommuneNestedInput

Name Type Nullable
create CommuneUserCreateWithoutCommuneInput | CommuneUserCreateWithoutCommuneInput[] | CommuneUserUncheckedCreateWithoutCommuneInput | CommuneUserUncheckedCreateWithoutCommuneInput[] No
connectOrCreate CommuneUserCreateOrConnectWithoutCommuneInput | CommuneUserCreateOrConnectWithoutCommuneInput[] No
upsert CommuneUserUpsertWithWhereUniqueWithoutCommuneInput | CommuneUserUpsertWithWhereUniqueWithoutCommuneInput[] No
createMany CommuneUserCreateManyCommuneInputEnvelope No
set CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
disconnect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
delete CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
connect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
update CommuneUserUpdateWithWhereUniqueWithoutCommuneInput | CommuneUserUpdateWithWhereUniqueWithoutCommuneInput[] No
updateMany CommuneUserUpdateManyWithWhereWithoutCommuneInput | CommuneUserUpdateManyWithWhereWithoutCommuneInput[] No
deleteMany CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] No

CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput

Name Type Nullable
create CommuneUserCreateWithoutCommuneInput | CommuneUserCreateWithoutCommuneInput[] | CommuneUserUncheckedCreateWithoutCommuneInput | CommuneUserUncheckedCreateWithoutCommuneInput[] No
connectOrCreate CommuneUserCreateOrConnectWithoutCommuneInput | CommuneUserCreateOrConnectWithoutCommuneInput[] No
upsert CommuneUserUpsertWithWhereUniqueWithoutCommuneInput | CommuneUserUpsertWithWhereUniqueWithoutCommuneInput[] No
createMany CommuneUserCreateManyCommuneInputEnvelope No
set CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
disconnect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
delete CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
connect CommuneUserWhereUniqueInput | CommuneUserWhereUniqueInput[] No
update CommuneUserUpdateWithWhereUniqueWithoutCommuneInput | CommuneUserUpdateWithWhereUniqueWithoutCommuneInput[] No
updateMany CommuneUserUpdateManyWithWhereWithoutCommuneInput | CommuneUserUpdateManyWithWhereWithoutCommuneInput[] No
deleteMany CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] No

CommuneCreateNestedOneWithoutUsersInput

Name Type Nullable
create CommuneCreateWithoutUsersInput | CommuneUncheckedCreateWithoutUsersInput No
connectOrCreate CommuneCreateOrConnectWithoutUsersInput No
connect CommuneWhereUniqueInput No

UserCreateNestedOneWithoutCommunesInput

Name Type Nullable
create UserCreateWithoutCommunesInput | UserUncheckedCreateWithoutCommunesInput No
connectOrCreate UserCreateOrConnectWithoutCommunesInput No
connect UserWhereUniqueInput No



UserCreateNestedOneWithoutMembershipInput

Name Type Nullable
create UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput No
connectOrCreate UserCreateOrConnectWithoutMembershipInput No
connect UserWhereUniqueInput No

UserUncheckedCreateNestedOneWithoutMembershipInput

Name Type Nullable
create UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput No
connectOrCreate UserCreateOrConnectWithoutMembershipInput No
connect UserWhereUniqueInput No

NullableEnumAudienceFieldUpdateOperationsInput

Name Type Nullable
set Audience | Null Yes

UserUpdateOneWithoutMembershipNestedInput

Name Type Nullable
create UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput No
connectOrCreate UserCreateOrConnectWithoutMembershipInput No
upsert UserUpsertWithoutMembershipInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutMembershipInput | UserUncheckedUpdateWithoutMembershipInput No

UserUncheckedUpdateOneWithoutMembershipNestedInput

Name Type Nullable
create UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput No
connectOrCreate UserCreateOrConnectWithoutMembershipInput No
upsert UserUpsertWithoutMembershipInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutMembershipInput | UserUncheckedUpdateWithoutMembershipInput No





BookUpdateManyWithoutGenreNestedInput

Name Type Nullable
create BookCreateWithoutGenreInput | BookCreateWithoutGenreInput[] | BookUncheckedCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput[] No
connectOrCreate BookCreateOrConnectWithoutGenreInput | BookCreateOrConnectWithoutGenreInput[] No
upsert BookUpsertWithWhereUniqueWithoutGenreInput | BookUpsertWithWhereUniqueWithoutGenreInput[] No
createMany BookCreateManyGenreInputEnvelope No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutGenreInput | BookUpdateWithWhereUniqueWithoutGenreInput[] No
updateMany BookUpdateManyWithWhereWithoutGenreInput | BookUpdateManyWithWhereWithoutGenreInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No

CoversUpdateManyWithoutGenreNestedInput

Name Type Nullable
create CoversCreateWithoutGenreInput | CoversCreateWithoutGenreInput[] | CoversUncheckedCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput[] No
connectOrCreate CoversCreateOrConnectWithoutGenreInput | CoversCreateOrConnectWithoutGenreInput[] No
upsert CoversUpsertWithWhereUniqueWithoutGenreInput | CoversUpsertWithWhereUniqueWithoutGenreInput[] No
createMany CoversCreateManyGenreInputEnvelope No
set CoversWhereUniqueInput | CoversWhereUniqueInput[] No
disconnect CoversWhereUniqueInput | CoversWhereUniqueInput[] No
delete CoversWhereUniqueInput | CoversWhereUniqueInput[] No
connect CoversWhereUniqueInput | CoversWhereUniqueInput[] No
update CoversUpdateWithWhereUniqueWithoutGenreInput | CoversUpdateWithWhereUniqueWithoutGenreInput[] No
updateMany CoversUpdateManyWithWhereWithoutGenreInput | CoversUpdateManyWithWhereWithoutGenreInput[] No
deleteMany CoversScalarWhereInput | CoversScalarWhereInput[] No

BookUncheckedUpdateManyWithoutGenreNestedInput

Name Type Nullable
create BookCreateWithoutGenreInput | BookCreateWithoutGenreInput[] | BookUncheckedCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput[] No
connectOrCreate BookCreateOrConnectWithoutGenreInput | BookCreateOrConnectWithoutGenreInput[] No
upsert BookUpsertWithWhereUniqueWithoutGenreInput | BookUpsertWithWhereUniqueWithoutGenreInput[] No
createMany BookCreateManyGenreInputEnvelope No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutGenreInput | BookUpdateWithWhereUniqueWithoutGenreInput[] No
updateMany BookUpdateManyWithWhereWithoutGenreInput | BookUpdateManyWithWhereWithoutGenreInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No

CoversUncheckedUpdateManyWithoutGenreNestedInput

Name Type Nullable
create CoversCreateWithoutGenreInput | CoversCreateWithoutGenreInput[] | CoversUncheckedCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput[] No
connectOrCreate CoversCreateOrConnectWithoutGenreInput | CoversCreateOrConnectWithoutGenreInput[] No
upsert CoversUpsertWithWhereUniqueWithoutGenreInput | CoversUpsertWithWhereUniqueWithoutGenreInput[] No
createMany CoversCreateManyGenreInputEnvelope No
set CoversWhereUniqueInput | CoversWhereUniqueInput[] No
disconnect CoversWhereUniqueInput | CoversWhereUniqueInput[] No
delete CoversWhereUniqueInput | CoversWhereUniqueInput[] No
connect CoversWhereUniqueInput | CoversWhereUniqueInput[] No
update CoversUpdateWithWhereUniqueWithoutGenreInput | CoversUpdateWithWhereUniqueWithoutGenreInput[] No
updateMany CoversUpdateManyWithWhereWithoutGenreInput | CoversUpdateManyWithWhereWithoutGenreInput[] No
deleteMany CoversScalarWhereInput | CoversScalarWhereInput[] No

GenreCreateNestedOneWithoutCoversInput

Name Type Nullable
create GenreCreateWithoutCoversInput | GenreUncheckedCreateWithoutCoversInput No
connectOrCreate GenreCreateOrConnectWithoutCoversInput No
connect GenreWhereUniqueInput No




BookUpdateManyWithoutCategoriesNestedInput

Name Type Nullable
create BookCreateWithoutCategoriesInput | BookCreateWithoutCategoriesInput[] | BookUncheckedCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput[] No
connectOrCreate BookCreateOrConnectWithoutCategoriesInput | BookCreateOrConnectWithoutCategoriesInput[] No
upsert BookUpsertWithWhereUniqueWithoutCategoriesInput | BookUpsertWithWhereUniqueWithoutCategoriesInput[] No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutCategoriesInput | BookUpdateWithWhereUniqueWithoutCategoriesInput[] No
updateMany BookUpdateManyWithWhereWithoutCategoriesInput | BookUpdateManyWithWhereWithoutCategoriesInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No

BookUncheckedUpdateManyWithoutCategoriesNestedInput

Name Type Nullable
create BookCreateWithoutCategoriesInput | BookCreateWithoutCategoriesInput[] | BookUncheckedCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput[] No
connectOrCreate BookCreateOrConnectWithoutCategoriesInput | BookCreateOrConnectWithoutCategoriesInput[] No
upsert BookUpsertWithWhereUniqueWithoutCategoriesInput | BookUpsertWithWhereUniqueWithoutCategoriesInput[] No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutCategoriesInput | BookUpdateWithWhereUniqueWithoutCategoriesInput[] No
updateMany BookUpdateManyWithWhereWithoutCategoriesInput | BookUpdateManyWithWhereWithoutCategoriesInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No

GenreCreateNestedOneWithoutBooksInput

Name Type Nullable
create GenreCreateWithoutBooksInput | GenreUncheckedCreateWithoutBooksInput No
connectOrCreate GenreCreateOrConnectWithoutBooksInput No
connect GenreWhereUniqueInput No





GalleryCreateNestedOneWithoutBook_galleryInput

Name Type Nullable
create GalleryCreateWithoutBook_galleryInput | GalleryUncheckedCreateWithoutBook_galleryInput No
connectOrCreate GalleryCreateOrConnectWithoutBook_galleryInput No
connect GalleryWhereUniqueInput No









NullableEnumBookStatusFieldUpdateOperationsInput

Name Type Nullable
set BookStatus | Null Yes


BookCategoryUpdateManyWithoutBooksNestedInput

Name Type Nullable
create BookCategoryCreateWithoutBooksInput | BookCategoryCreateWithoutBooksInput[] | BookCategoryUncheckedCreateWithoutBooksInput | BookCategoryUncheckedCreateWithoutBooksInput[] No
connectOrCreate BookCategoryCreateOrConnectWithoutBooksInput | BookCategoryCreateOrConnectWithoutBooksInput[] No
upsert BookCategoryUpsertWithWhereUniqueWithoutBooksInput | BookCategoryUpsertWithWhereUniqueWithoutBooksInput[] No
set BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
disconnect BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
delete BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
connect BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
update BookCategoryUpdateWithWhereUniqueWithoutBooksInput | BookCategoryUpdateWithWhereUniqueWithoutBooksInput[] No
updateMany BookCategoryUpdateManyWithWhereWithoutBooksInput | BookCategoryUpdateManyWithWhereWithoutBooksInput[] No
deleteMany BookCategoryScalarWhereInput | BookCategoryScalarWhereInput[] No

UserUpdateManyWithoutBooksNestedInput

Name Type Nullable
create UserCreateWithoutBooksInput | UserCreateWithoutBooksInput[] | UserUncheckedCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput[] No
connectOrCreate UserCreateOrConnectWithoutBooksInput | UserCreateOrConnectWithoutBooksInput[] No
upsert UserUpsertWithWhereUniqueWithoutBooksInput | UserUpsertWithWhereUniqueWithoutBooksInput[] No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutBooksInput | UserUpdateWithWhereUniqueWithoutBooksInput[] No
updateMany UserUpdateManyWithWhereWithoutBooksInput | UserUpdateManyWithWhereWithoutBooksInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

ChapterUpdateManyWithoutBookNestedInput

Name Type Nullable
create ChapterCreateWithoutBookInput | ChapterCreateWithoutBookInput[] | ChapterUncheckedCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput[] No
connectOrCreate ChapterCreateOrConnectWithoutBookInput | ChapterCreateOrConnectWithoutBookInput[] No
upsert ChapterUpsertWithWhereUniqueWithoutBookInput | ChapterUpsertWithWhereUniqueWithoutBookInput[] No
createMany ChapterCreateManyBookInputEnvelope No
set ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
disconnect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
delete ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
connect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
update ChapterUpdateWithWhereUniqueWithoutBookInput | ChapterUpdateWithWhereUniqueWithoutBookInput[] No
updateMany ChapterUpdateManyWithWhereWithoutBookInput | ChapterUpdateManyWithWhereWithoutBookInput[] No
deleteMany ChapterScalarWhereInput | ChapterScalarWhereInput[] No

CharacterUpdateManyWithoutBooksNestedInput

Name Type Nullable
create CharacterCreateWithoutBooksInput | CharacterCreateWithoutBooksInput[] | CharacterUncheckedCreateWithoutBooksInput | CharacterUncheckedCreateWithoutBooksInput[] No
connectOrCreate CharacterCreateOrConnectWithoutBooksInput | CharacterCreateOrConnectWithoutBooksInput[] No
upsert CharacterUpsertWithWhereUniqueWithoutBooksInput | CharacterUpsertWithWhereUniqueWithoutBooksInput[] No
set CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
disconnect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
delete CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
connect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
update CharacterUpdateWithWhereUniqueWithoutBooksInput | CharacterUpdateWithWhereUniqueWithoutBooksInput[] No
updateMany CharacterUpdateManyWithWhereWithoutBooksInput | CharacterUpdateManyWithWhereWithoutBooksInput[] No
deleteMany CharacterScalarWhereInput | CharacterScalarWhereInput[] No


FollowUpdateManyWithoutBookNestedInput

Name Type Nullable
create FollowCreateWithoutBookInput | FollowCreateWithoutBookInput[] | FollowUncheckedCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput[] No
connectOrCreate FollowCreateOrConnectWithoutBookInput | FollowCreateOrConnectWithoutBookInput[] No
upsert FollowUpsertWithWhereUniqueWithoutBookInput | FollowUpsertWithWhereUniqueWithoutBookInput[] No
createMany FollowCreateManyBookInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutBookInput | FollowUpdateWithWhereUniqueWithoutBookInput[] No
updateMany FollowUpdateManyWithWhereWithoutBookInput | FollowUpdateManyWithWhereWithoutBookInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

LikeUpdateManyWithoutBookNestedInput

Name Type Nullable
create LikeCreateWithoutBookInput | LikeCreateWithoutBookInput[] | LikeUncheckedCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput[] No
connectOrCreate LikeCreateOrConnectWithoutBookInput | LikeCreateOrConnectWithoutBookInput[] No
upsert LikeUpsertWithWhereUniqueWithoutBookInput | LikeUpsertWithWhereUniqueWithoutBookInput[] No
createMany LikeCreateManyBookInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutBookInput | LikeUpdateWithWhereUniqueWithoutBookInput[] No
updateMany LikeUpdateManyWithWhereWithoutBookInput | LikeUpdateManyWithWhereWithoutBookInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

BookCategoryUncheckedUpdateManyWithoutBooksNestedInput

Name Type Nullable
create BookCategoryCreateWithoutBooksInput | BookCategoryCreateWithoutBooksInput[] | BookCategoryUncheckedCreateWithoutBooksInput | BookCategoryUncheckedCreateWithoutBooksInput[] No
connectOrCreate BookCategoryCreateOrConnectWithoutBooksInput | BookCategoryCreateOrConnectWithoutBooksInput[] No
upsert BookCategoryUpsertWithWhereUniqueWithoutBooksInput | BookCategoryUpsertWithWhereUniqueWithoutBooksInput[] No
set BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
disconnect BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
delete BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
connect BookCategoryWhereUniqueInput | BookCategoryWhereUniqueInput[] No
update BookCategoryUpdateWithWhereUniqueWithoutBooksInput | BookCategoryUpdateWithWhereUniqueWithoutBooksInput[] No
updateMany BookCategoryUpdateManyWithWhereWithoutBooksInput | BookCategoryUpdateManyWithWhereWithoutBooksInput[] No
deleteMany BookCategoryScalarWhereInput | BookCategoryScalarWhereInput[] No

UserUncheckedUpdateManyWithoutBooksNestedInput

Name Type Nullable
create UserCreateWithoutBooksInput | UserCreateWithoutBooksInput[] | UserUncheckedCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput[] No
connectOrCreate UserCreateOrConnectWithoutBooksInput | UserCreateOrConnectWithoutBooksInput[] No
upsert UserUpsertWithWhereUniqueWithoutBooksInput | UserUpsertWithWhereUniqueWithoutBooksInput[] No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutBooksInput | UserUpdateWithWhereUniqueWithoutBooksInput[] No
updateMany UserUpdateManyWithWhereWithoutBooksInput | UserUpdateManyWithWhereWithoutBooksInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

ChapterUncheckedUpdateManyWithoutBookNestedInput

Name Type Nullable
create ChapterCreateWithoutBookInput | ChapterCreateWithoutBookInput[] | ChapterUncheckedCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput[] No
connectOrCreate ChapterCreateOrConnectWithoutBookInput | ChapterCreateOrConnectWithoutBookInput[] No
upsert ChapterUpsertWithWhereUniqueWithoutBookInput | ChapterUpsertWithWhereUniqueWithoutBookInput[] No
createMany ChapterCreateManyBookInputEnvelope No
set ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
disconnect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
delete ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
connect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
update ChapterUpdateWithWhereUniqueWithoutBookInput | ChapterUpdateWithWhereUniqueWithoutBookInput[] No
updateMany ChapterUpdateManyWithWhereWithoutBookInput | ChapterUpdateManyWithWhereWithoutBookInput[] No
deleteMany ChapterScalarWhereInput | ChapterScalarWhereInput[] No

CharacterUncheckedUpdateManyWithoutBooksNestedInput

Name Type Nullable
create CharacterCreateWithoutBooksInput | CharacterCreateWithoutBooksInput[] | CharacterUncheckedCreateWithoutBooksInput | CharacterUncheckedCreateWithoutBooksInput[] No
connectOrCreate CharacterCreateOrConnectWithoutBooksInput | CharacterCreateOrConnectWithoutBooksInput[] No
upsert CharacterUpsertWithWhereUniqueWithoutBooksInput | CharacterUpsertWithWhereUniqueWithoutBooksInput[] No
set CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
disconnect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
delete CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
connect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
update CharacterUpdateWithWhereUniqueWithoutBooksInput | CharacterUpdateWithWhereUniqueWithoutBooksInput[] No
updateMany CharacterUpdateManyWithWhereWithoutBooksInput | CharacterUpdateManyWithWhereWithoutBooksInput[] No
deleteMany CharacterScalarWhereInput | CharacterScalarWhereInput[] No

FollowUncheckedUpdateManyWithoutBookNestedInput

Name Type Nullable
create FollowCreateWithoutBookInput | FollowCreateWithoutBookInput[] | FollowUncheckedCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput[] No
connectOrCreate FollowCreateOrConnectWithoutBookInput | FollowCreateOrConnectWithoutBookInput[] No
upsert FollowUpsertWithWhereUniqueWithoutBookInput | FollowUpsertWithWhereUniqueWithoutBookInput[] No
createMany FollowCreateManyBookInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutBookInput | FollowUpdateWithWhereUniqueWithoutBookInput[] No
updateMany FollowUpdateManyWithWhereWithoutBookInput | FollowUpdateManyWithWhereWithoutBookInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

LikeUncheckedUpdateManyWithoutBookNestedInput

Name Type Nullable
create LikeCreateWithoutBookInput | LikeCreateWithoutBookInput[] | LikeUncheckedCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput[] No
connectOrCreate LikeCreateOrConnectWithoutBookInput | LikeCreateOrConnectWithoutBookInput[] No
upsert LikeUpsertWithWhereUniqueWithoutBookInput | LikeUpsertWithWhereUniqueWithoutBookInput[] No
createMany LikeCreateManyBookInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutBookInput | LikeUpdateWithWhereUniqueWithoutBookInput[] No
updateMany LikeUpdateManyWithWhereWithoutBookInput | LikeUpdateManyWithWhereWithoutBookInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No





GalleryCreateNestedOneWithoutCharacter_galleryInput

Name Type Nullable
create GalleryCreateWithoutCharacter_galleryInput | GalleryUncheckedCreateWithoutCharacter_galleryInput No
connectOrCreate GalleryCreateOrConnectWithoutCharacter_galleryInput No
connect GalleryWhereUniqueInput No





LikeUpdateManyWithoutCharacterNestedInput

Name Type Nullable
create LikeCreateWithoutCharacterInput | LikeCreateWithoutCharacterInput[] | LikeUncheckedCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput[] No
connectOrCreate LikeCreateOrConnectWithoutCharacterInput | LikeCreateOrConnectWithoutCharacterInput[] No
upsert LikeUpsertWithWhereUniqueWithoutCharacterInput | LikeUpsertWithWhereUniqueWithoutCharacterInput[] No
createMany LikeCreateManyCharacterInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutCharacterInput | LikeUpdateWithWhereUniqueWithoutCharacterInput[] No
updateMany LikeUpdateManyWithWhereWithoutCharacterInput | LikeUpdateManyWithWhereWithoutCharacterInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

FollowUpdateManyWithoutCharacterNestedInput

Name Type Nullable
create FollowCreateWithoutCharacterInput | FollowCreateWithoutCharacterInput[] | FollowUncheckedCreateWithoutCharacterInput | FollowUncheckedCreateWithoutCharacterInput[] No
connectOrCreate FollowCreateOrConnectWithoutCharacterInput | FollowCreateOrConnectWithoutCharacterInput[] No
upsert FollowUpsertWithWhereUniqueWithoutCharacterInput | FollowUpsertWithWhereUniqueWithoutCharacterInput[] No
createMany FollowCreateManyCharacterInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutCharacterInput | FollowUpdateWithWhereUniqueWithoutCharacterInput[] No
updateMany FollowUpdateManyWithWhereWithoutCharacterInput | FollowUpdateManyWithWhereWithoutCharacterInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

BookUpdateManyWithoutCharactersNestedInput

Name Type Nullable
create BookCreateWithoutCharactersInput | BookCreateWithoutCharactersInput[] | BookUncheckedCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput[] No
connectOrCreate BookCreateOrConnectWithoutCharactersInput | BookCreateOrConnectWithoutCharactersInput[] No
upsert BookUpsertWithWhereUniqueWithoutCharactersInput | BookUpsertWithWhereUniqueWithoutCharactersInput[] No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutCharactersInput | BookUpdateWithWhereUniqueWithoutCharactersInput[] No
updateMany BookUpdateManyWithWhereWithoutCharactersInput | BookUpdateManyWithWhereWithoutCharactersInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No

ChapterUpdateManyWithoutCharactersNestedInput

Name Type Nullable
create ChapterCreateWithoutCharactersInput | ChapterCreateWithoutCharactersInput[] | ChapterUncheckedCreateWithoutCharactersInput | ChapterUncheckedCreateWithoutCharactersInput[] No
connectOrCreate ChapterCreateOrConnectWithoutCharactersInput | ChapterCreateOrConnectWithoutCharactersInput[] No
upsert ChapterUpsertWithWhereUniqueWithoutCharactersInput | ChapterUpsertWithWhereUniqueWithoutCharactersInput[] No
set ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
disconnect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
delete ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
connect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
update ChapterUpdateWithWhereUniqueWithoutCharactersInput | ChapterUpdateWithWhereUniqueWithoutCharactersInput[] No
updateMany ChapterUpdateManyWithWhereWithoutCharactersInput | ChapterUpdateManyWithWhereWithoutCharactersInput[] No
deleteMany ChapterScalarWhereInput | ChapterScalarWhereInput[] No


LikeUncheckedUpdateManyWithoutCharacterNestedInput

Name Type Nullable
create LikeCreateWithoutCharacterInput | LikeCreateWithoutCharacterInput[] | LikeUncheckedCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput[] No
connectOrCreate LikeCreateOrConnectWithoutCharacterInput | LikeCreateOrConnectWithoutCharacterInput[] No
upsert LikeUpsertWithWhereUniqueWithoutCharacterInput | LikeUpsertWithWhereUniqueWithoutCharacterInput[] No
createMany LikeCreateManyCharacterInputEnvelope No
set LikeWhereUniqueInput | LikeWhereUniqueInput[] No
disconnect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
delete LikeWhereUniqueInput | LikeWhereUniqueInput[] No
connect LikeWhereUniqueInput | LikeWhereUniqueInput[] No
update LikeUpdateWithWhereUniqueWithoutCharacterInput | LikeUpdateWithWhereUniqueWithoutCharacterInput[] No
updateMany LikeUpdateManyWithWhereWithoutCharacterInput | LikeUpdateManyWithWhereWithoutCharacterInput[] No
deleteMany LikeScalarWhereInput | LikeScalarWhereInput[] No

FollowUncheckedUpdateManyWithoutCharacterNestedInput

Name Type Nullable
create FollowCreateWithoutCharacterInput | FollowCreateWithoutCharacterInput[] | FollowUncheckedCreateWithoutCharacterInput | FollowUncheckedCreateWithoutCharacterInput[] No
connectOrCreate FollowCreateOrConnectWithoutCharacterInput | FollowCreateOrConnectWithoutCharacterInput[] No
upsert FollowUpsertWithWhereUniqueWithoutCharacterInput | FollowUpsertWithWhereUniqueWithoutCharacterInput[] No
createMany FollowCreateManyCharacterInputEnvelope No
set FollowWhereUniqueInput | FollowWhereUniqueInput[] No
disconnect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
delete FollowWhereUniqueInput | FollowWhereUniqueInput[] No
connect FollowWhereUniqueInput | FollowWhereUniqueInput[] No
update FollowUpdateWithWhereUniqueWithoutCharacterInput | FollowUpdateWithWhereUniqueWithoutCharacterInput[] No
updateMany FollowUpdateManyWithWhereWithoutCharacterInput | FollowUpdateManyWithWhereWithoutCharacterInput[] No
deleteMany FollowScalarWhereInput | FollowScalarWhereInput[] No

BookUncheckedUpdateManyWithoutCharactersNestedInput

Name Type Nullable
create BookCreateWithoutCharactersInput | BookCreateWithoutCharactersInput[] | BookUncheckedCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput[] No
connectOrCreate BookCreateOrConnectWithoutCharactersInput | BookCreateOrConnectWithoutCharactersInput[] No
upsert BookUpsertWithWhereUniqueWithoutCharactersInput | BookUpsertWithWhereUniqueWithoutCharactersInput[] No
set BookWhereUniqueInput | BookWhereUniqueInput[] No
disconnect BookWhereUniqueInput | BookWhereUniqueInput[] No
delete BookWhereUniqueInput | BookWhereUniqueInput[] No
connect BookWhereUniqueInput | BookWhereUniqueInput[] No
update BookUpdateWithWhereUniqueWithoutCharactersInput | BookUpdateWithWhereUniqueWithoutCharactersInput[] No
updateMany BookUpdateManyWithWhereWithoutCharactersInput | BookUpdateManyWithWhereWithoutCharactersInput[] No
deleteMany BookScalarWhereInput | BookScalarWhereInput[] No

ChapterUncheckedUpdateManyWithoutCharactersNestedInput

Name Type Nullable
create ChapterCreateWithoutCharactersInput | ChapterCreateWithoutCharactersInput[] | ChapterUncheckedCreateWithoutCharactersInput | ChapterUncheckedCreateWithoutCharactersInput[] No
connectOrCreate ChapterCreateOrConnectWithoutCharactersInput | ChapterCreateOrConnectWithoutCharactersInput[] No
upsert ChapterUpsertWithWhereUniqueWithoutCharactersInput | ChapterUpsertWithWhereUniqueWithoutCharactersInput[] No
set ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
disconnect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
delete ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
connect ChapterWhereUniqueInput | ChapterWhereUniqueInput[] No
update ChapterUpdateWithWhereUniqueWithoutCharactersInput | ChapterUpdateWithWhereUniqueWithoutCharactersInput[] No
updateMany ChapterUpdateManyWithWhereWithoutCharactersInput | ChapterUpdateManyWithWhereWithoutCharactersInput[] No
deleteMany ChapterScalarWhereInput | ChapterScalarWhereInput[] No


BookCreateNestedOneWithoutChaptersInput

Name Type Nullable
create BookCreateWithoutChaptersInput | BookUncheckedCreateWithoutChaptersInput No
connectOrCreate BookCreateOrConnectWithoutChaptersInput No
connect BookWhereUniqueInput No

GalleryCreateNestedOneWithoutChapter_galleryInput

Name Type Nullable
create GalleryCreateWithoutChapter_galleryInput | GalleryUncheckedCreateWithoutChapter_galleryInput No
connectOrCreate GalleryCreateOrConnectWithoutChapter_galleryInput No
connect GalleryWhereUniqueInput No


CharacterUpdateManyWithoutChaptersNestedInput

Name Type Nullable
create CharacterCreateWithoutChaptersInput | CharacterCreateWithoutChaptersInput[] | CharacterUncheckedCreateWithoutChaptersInput | CharacterUncheckedCreateWithoutChaptersInput[] No
connectOrCreate CharacterCreateOrConnectWithoutChaptersInput | CharacterCreateOrConnectWithoutChaptersInput[] No
upsert CharacterUpsertWithWhereUniqueWithoutChaptersInput | CharacterUpsertWithWhereUniqueWithoutChaptersInput[] No
set CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
disconnect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
delete CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
connect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
update CharacterUpdateWithWhereUniqueWithoutChaptersInput | CharacterUpdateWithWhereUniqueWithoutChaptersInput[] No
updateMany CharacterUpdateManyWithWhereWithoutChaptersInput | CharacterUpdateManyWithWhereWithoutChaptersInput[] No
deleteMany CharacterScalarWhereInput | CharacterScalarWhereInput[] No



CharacterUncheckedUpdateManyWithoutChaptersNestedInput

Name Type Nullable
create CharacterCreateWithoutChaptersInput | CharacterCreateWithoutChaptersInput[] | CharacterUncheckedCreateWithoutChaptersInput | CharacterUncheckedCreateWithoutChaptersInput[] No
connectOrCreate CharacterCreateOrConnectWithoutChaptersInput | CharacterCreateOrConnectWithoutChaptersInput[] No
upsert CharacterUpsertWithWhereUniqueWithoutChaptersInput | CharacterUpsertWithWhereUniqueWithoutChaptersInput[] No
set CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
disconnect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
delete CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
connect CharacterWhereUniqueInput | CharacterWhereUniqueInput[] No
update CharacterUpdateWithWhereUniqueWithoutChaptersInput | CharacterUpdateWithWhereUniqueWithoutChaptersInput[] No
updateMany CharacterUpdateManyWithWhereWithoutChaptersInput | CharacterUpdateManyWithWhereWithoutChaptersInput[] No
deleteMany CharacterScalarWhereInput | CharacterScalarWhereInput[] No

UserCreateNestedOneWithoutBlockingInput

Name Type Nullable
create UserCreateWithoutBlockingInput | UserUncheckedCreateWithoutBlockingInput No
connectOrCreate UserCreateOrConnectWithoutBlockingInput No
connect UserWhereUniqueInput No

GalleryCreateNestedOneWithoutBlockingInput

Name Type Nullable
create GalleryCreateWithoutBlockingInput | GalleryUncheckedCreateWithoutBlockingInput No
connectOrCreate GalleryCreateOrConnectWithoutBlockingInput No
connect GalleryWhereUniqueInput No

CommentThreadCreateNestedOneWithoutBlockedInput

Name Type Nullable
create CommentThreadCreateWithoutBlockedInput | CommentThreadUncheckedCreateWithoutBlockedInput No
connectOrCreate CommentThreadCreateOrConnectWithoutBlockedInput No
connect CommentThreadWhereUniqueInput No

UserCreateNestedOneWithoutBlockedInput

Name Type Nullable
create UserCreateWithoutBlockedInput | UserUncheckedCreateWithoutBlockedInput No
connectOrCreate UserCreateOrConnectWithoutBlockedInput No
connect UserWhereUniqueInput No

NullableEnumEntityFieldUpdateOperationsInput

Name Type Nullable
set Entity | Null Yes


GalleryUpdateOneWithoutBlockingNestedInput

Name Type Nullable
create GalleryCreateWithoutBlockingInput | GalleryUncheckedCreateWithoutBlockingInput No
connectOrCreate GalleryCreateOrConnectWithoutBlockingInput No
upsert GalleryUpsertWithoutBlockingInput No
disconnect Boolean No
delete Boolean No
connect GalleryWhereUniqueInput No
update GalleryUpdateWithoutBlockingInput | GalleryUncheckedUpdateWithoutBlockingInput No



UserCreateNestedOneWithoutAccountsInput

Name Type Nullable
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No
connectOrCreate UserCreateOrConnectWithoutAccountsInput No
connect UserWhereUniqueInput No


UserCreateNestedOneWithoutSessionsInput

Name Type Nullable
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No
connectOrCreate UserCreateOrConnectWithoutSessionsInput No
connect UserWhereUniqueInput No


NestedStringFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedStringWithAggregatesFilter

Name Type Nullable
equals String No
in String No
notIn String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | Null Yes
notIn String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | Null Yes
notIn DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedDateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime No
notIn DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedEnumAudienceFilter

Name Type Nullable
equals Audience No
in Audience[] No
notIn Audience[] No
not Audience | NestedEnumAudienceFilter No

NestedEnumAudienceWithAggregatesFilter

Name Type Nullable
equals Audience No
in Audience[] No
notIn Audience[] No
not Audience | NestedEnumAudienceWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumAudienceFilter No
_max NestedEnumAudienceFilter No

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int No
notIn Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float No
in Float No
notIn Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Null Yes
notIn Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | Null Yes
in Float | Null Yes
notIn Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableFilter | Null Yes

NestedEnumEntityFilter

Name Type Nullable
equals Entity No
in Entity[] No
notIn Entity[] No
not Entity | NestedEnumEntityFilter No

NestedEnumRoleFilter

Name Type Nullable
equals Role No
in Role[] No
notIn Role[] No
not Role | NestedEnumRoleFilter No

NestedEnumEntityWithAggregatesFilter

Name Type Nullable
equals Entity No
in Entity[] No
notIn Entity[] No
not Entity | NestedEnumEntityWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumEntityFilter No
_max NestedEnumEntityFilter No

NestedEnumRoleWithAggregatesFilter

Name Type Nullable
equals Role No
in Role[] No
notIn Role[] No
not Role | NestedEnumRoleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumRoleFilter No
_max NestedEnumRoleFilter No

NestedEnumAudienceNullableFilter

Name Type Nullable
equals Audience | Null Yes
in Audience[] | Null Yes
notIn Audience[] | Null Yes
not Audience | NestedEnumAudienceNullableFilter | Null Yes

NestedEnumAudienceNullableWithAggregatesFilter

Name Type Nullable
equals Audience | Null Yes
in Audience[] | Null Yes
notIn Audience[] | Null Yes
not Audience | NestedEnumAudienceNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumAudienceNullableFilter No
_max NestedEnumAudienceNullableFilter No

NestedEnumBookStatusNullableFilter

Name Type Nullable
equals BookStatus | Null Yes
in BookStatus[] | Null Yes
notIn BookStatus[] | Null Yes
not BookStatus | NestedEnumBookStatusNullableFilter | Null Yes

NestedEnumBookStatusNullableWithAggregatesFilter

Name Type Nullable
equals BookStatus | Null Yes
in BookStatus[] | Null Yes
notIn BookStatus[] | Null Yes
not BookStatus | NestedEnumBookStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumBookStatusNullableFilter No
_max NestedEnumBookStatusNullableFilter No

NestedEnumEntityNullableFilter

Name Type Nullable
equals Entity | Null Yes
in Entity[] | Null Yes
notIn Entity[] | Null Yes
not Entity | NestedEnumEntityNullableFilter | Null Yes

NestedEnumEntityNullableWithAggregatesFilter

Name Type Nullable
equals Entity | Null Yes
in Entity[] | Null Yes
notIn Entity[] | Null Yes
not Entity | NestedEnumEntityNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumEntityNullableFilter No
_max NestedEnumEntityNullableFilter No

AccountCreateWithoutUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
oauth_token_secret String | Null Yes
oauth_token String | Null Yes

AccountUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
oauth_token_secret String | Null Yes
oauth_token String | Null Yes

AccountCreateOrConnectWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
create AccountCreateWithoutUserInput | AccountUncheckedCreateWithoutUserInput No

AccountCreateManyUserInputEnvelope

Name Type Nullable
data AccountCreateManyUserInput | AccountCreateManyUserInput[] No
skipDuplicates Boolean No

BlockCreateWithoutBlockedUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedGallery GalleryCreateNestedOneWithoutBlockingInput No
blockedThread CommentThreadCreateNestedOneWithoutBlockedInput No
user UserCreateNestedOneWithoutBlockedInput No

BlockUncheckedCreateWithoutBlockedUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
galleryId String | Null Yes
threadId String | Null Yes
userId String No

BlockCreateOrConnectWithoutBlockedUserInput

Name Type Nullable
where BlockWhereUniqueInput No
create BlockCreateWithoutBlockedUserInput | BlockUncheckedCreateWithoutBlockedUserInput No

BlockCreateManyBlockedUserInputEnvelope

Name Type Nullable
data BlockCreateManyBlockedUserInput | BlockCreateManyBlockedUserInput[] No
skipDuplicates Boolean No

BlockCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedUser UserCreateNestedOneWithoutBlockingInput No
blockedGallery GalleryCreateNestedOneWithoutBlockingInput No
blockedThread CommentThreadCreateNestedOneWithoutBlockedInput No

BlockUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
galleryId String | Null Yes
threadId String | Null Yes

BlockCreateOrConnectWithoutUserInput

Name Type Nullable
where BlockWhereUniqueInput No
create BlockCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput No

BlockCreateManyUserInputEnvelope

Name Type Nullable
data BlockCreateManyUserInput | BlockCreateManyUserInput[] No
skipDuplicates Boolean No

ChatMessageCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
content String No
chatRoom ChatRoomCreateNestedOneWithoutMessagesInput No

ChatMessageUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
chatRoomId String No
content String No

ChatMessageCreateOrConnectWithoutAuthorInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
create ChatMessageCreateWithoutAuthorInput | ChatMessageUncheckedCreateWithoutAuthorInput No

ChatMessageCreateManyAuthorInputEnvelope

Name Type Nullable
data ChatMessageCreateManyAuthorInput | ChatMessageCreateManyAuthorInput[] No
skipDuplicates Boolean No

CommentCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
content String No
visible Boolean No
thread CommentThreadCreateNestedOneWithoutCommentsInput No
likes LikeCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
threadId String No
content String No
visible Boolean No
likes LikeUncheckedCreateNestedManyWithoutCommentInput No

CommentCreateOrConnectWithoutAuthorInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutAuthorInput | CommentUncheckedCreateWithoutAuthorInput No

CommentCreateManyAuthorInputEnvelope

Name Type Nullable
data CommentCreateManyAuthorInput | CommentCreateManyAuthorInput[] No
skipDuplicates Boolean No

CommuneCreateWithoutOwnerInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
gallery GalleryCreateNestedOneWithoutCommuneInput No
thread CommentThreadCreateNestedOneWithoutCommuneInput No
users CommuneUserCreateNestedManyWithoutCommuneInput No

CommuneUncheckedCreateWithoutOwnerInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
galleryId String | Null Yes
threadId String | Null Yes
users CommuneUserUncheckedCreateNestedManyWithoutCommuneInput No

CommuneCreateOrConnectWithoutOwnerInput

Name Type Nullable
where CommuneWhereUniqueInput No
create CommuneCreateWithoutOwnerInput | CommuneUncheckedCreateWithoutOwnerInput No

CommuneCreateManyOwnerInputEnvelope

Name Type Nullable
data CommuneCreateManyOwnerInput | CommuneCreateManyOwnerInput[] No
skipDuplicates Boolean No

CommuneUserCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
role Role No
commune CommuneCreateNestedOneWithoutUsersInput No

CommuneUserUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
communeId String No
role Role No

CommuneUserCreateOrConnectWithoutUserInput

Name Type Nullable
where CommuneUserWhereUniqueInput No
create CommuneUserCreateWithoutUserInput | CommuneUserUncheckedCreateWithoutUserInput No

CommuneUserCreateManyUserInputEnvelope

Name Type Nullable
data CommuneUserCreateManyUserInput | CommuneUserCreateManyUserInput[] No
skipDuplicates Boolean No

FanCreateWithoutFanInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fanOf UserCreateNestedOneWithoutFansInput No

FanUncheckedCreateWithoutFanInput

Name Type Nullable
id String No
fanOfId String No
createdAt DateTime No
updatedAt DateTime No

FanCreateOrConnectWithoutFanInput

Name Type Nullable
where FanWhereUniqueInput No
create FanCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput No

FanCreateManyFanInputEnvelope

Name Type Nullable
data FanCreateManyFanInput | FanCreateManyFanInput[] No
skipDuplicates Boolean No

FanCreateWithoutFanOfInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
fan UserCreateNestedOneWithoutFanOfInput No

FanUncheckedCreateWithoutFanOfInput

Name Type Nullable
id String No
fanId String No
createdAt DateTime No
updatedAt DateTime No

FanCreateOrConnectWithoutFanOfInput

Name Type Nullable
where FanWhereUniqueInput No
create FanCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput No

FanCreateManyFanOfInputEnvelope

Name Type Nullable
data FanCreateManyFanOfInput | FanCreateManyFanOfInput[] No
skipDuplicates Boolean No

FollowCreateWithoutFollowerInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
following UserCreateNestedOneWithoutFollowingInput No
character CharacterCreateNestedOneWithoutFansInput No
book BookCreateNestedOneWithoutFansInput No

FollowUncheckedCreateWithoutFollowerInput

Name Type Nullable
id String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes
bookId String | Null Yes

FollowCreateOrConnectWithoutFollowerInput

Name Type Nullable
where FollowWhereUniqueInput No
create FollowCreateWithoutFollowerInput | FollowUncheckedCreateWithoutFollowerInput No

FollowCreateManyFollowerInputEnvelope

Name Type Nullable
data FollowCreateManyFollowerInput | FollowCreateManyFollowerInput[] No
skipDuplicates Boolean No

FollowCreateWithoutFollowingInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
follower UserCreateNestedOneWithoutFollowerInput No
character CharacterCreateNestedOneWithoutFansInput No
book BookCreateNestedOneWithoutFansInput No

FollowUncheckedCreateWithoutFollowingInput

Name Type Nullable
id String No
followerId String No
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes
bookId String | Null Yes

FollowCreateOrConnectWithoutFollowingInput

Name Type Nullable
where FollowWhereUniqueInput No
create FollowCreateWithoutFollowingInput | FollowUncheckedCreateWithoutFollowingInput No

FollowCreateManyFollowingInputEnvelope

Name Type Nullable
data FollowCreateManyFollowingInput | FollowCreateManyFollowingInput[] No
skipDuplicates Boolean No

GalleryCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutAuthorInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutAuthorInput | GalleryUncheckedCreateWithoutAuthorInput No

GalleryCreateManyAuthorInputEnvelope

Name Type Nullable
data GalleryCreateManyAuthorInput | GalleryCreateManyAuthorInput[] No
skipDuplicates Boolean No

ImageCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes
gallery GalleryCreateNestedOneWithoutImagesInput No
post PostCreateNestedOneWithoutImagesInput No
likes LikeCreateNestedManyWithoutImageInput No
shares ShareCreateNestedManyWithoutImageInput No

ImageUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
galleryId String | Null Yes
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes
likes LikeUncheckedCreateNestedManyWithoutImageInput No
shares ShareUncheckedCreateNestedManyWithoutImageInput No

ImageCreateOrConnectWithoutAuthorInput

Name Type Nullable
where ImageWhereUniqueInput No
create ImageCreateWithoutAuthorInput | ImageUncheckedCreateWithoutAuthorInput No

ImageCreateManyAuthorInputEnvelope

Name Type Nullable
data ImageCreateManyAuthorInput | ImageCreateManyAuthorInput[] No
skipDuplicates Boolean No

LikeCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
comment CommentCreateNestedOneWithoutLikesInput No
gallery GalleryCreateNestedOneWithoutLikesInput No
image ImageCreateNestedOneWithoutLikesInput No
post PostCreateNestedOneWithoutLikesInput No
character CharacterCreateNestedOneWithoutLikesInput No
book BookCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

LikeCreateOrConnectWithoutAuthorInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput No

LikeCreateManyAuthorInputEnvelope

Name Type Nullable
data LikeCreateManyAuthorInput | LikeCreateManyAuthorInput[] No
skipDuplicates Boolean No

PostCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
images ImageCreateNestedManyWithoutPostInput No
likes LikeCreateNestedManyWithoutPostInput No
news NewsCreateNestedOneWithoutPostInput No
comment PostCreateNestedOneWithoutPost_commentsInput No
post_comments PostCreateNestedManyWithoutCommentInput No
shares ShareCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
images ImageUncheckedCreateNestedManyWithoutPostInput No
likes LikeUncheckedCreateNestedManyWithoutPostInput No
news NewsUncheckedCreateNestedOneWithoutPostInput No
post_comments PostUncheckedCreateNestedManyWithoutCommentInput No
shares ShareUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutAuthorInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput No

PostCreateManyAuthorInputEnvelope

Name Type Nullable
data PostCreateManyAuthorInput | PostCreateManyAuthorInput[] No
skipDuplicates Boolean No

SessionCreateWithoutUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

SessionUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

SessionCreateOrConnectWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
create SessionCreateWithoutUserInput | SessionUncheckedCreateWithoutUserInput No

SessionCreateManyUserInputEnvelope

Name Type Nullable
data SessionCreateManyUserInput | SessionCreateManyUserInput[] No
skipDuplicates Boolean No

ShareCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
gallery GalleryCreateNestedOneWithoutSharesInput No
image ImageCreateNestedOneWithoutSharesInput No
post PostCreateNestedOneWithoutSharesInput No

ShareUncheckedCreateWithoutAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
postId String | Null Yes
galleryId String | Null Yes
imageId String | Null Yes

ShareCreateOrConnectWithoutAuthorInput

Name Type Nullable
where ShareWhereUniqueInput No
create ShareCreateWithoutAuthorInput | ShareUncheckedCreateWithoutAuthorInput No

ShareCreateManyAuthorInputEnvelope

Name Type Nullable
data ShareCreateManyAuthorInput | ShareCreateManyAuthorInput[] No
skipDuplicates Boolean No

ChatRoomCreateWithoutUsersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No
messages ChatMessageCreateNestedManyWithoutChatRoomInput No

ChatRoomUncheckedCreateWithoutUsersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No
messages ChatMessageUncheckedCreateNestedManyWithoutChatRoomInput No

ChatRoomCreateOrConnectWithoutUsersInput

Name Type Nullable
where ChatRoomWhereUniqueInput No
create ChatRoomCreateWithoutUsersInput | ChatRoomUncheckedCreateWithoutUsersInput No

MembershipCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
level Audience | Null Yes

MembershipUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
level Audience | Null Yes

MembershipCreateOrConnectWithoutUserInput

Name Type Nullable
where MembershipWhereUniqueInput No
create MembershipCreateWithoutUserInput | MembershipUncheckedCreateWithoutUserInput No

BookCreateWithoutAuthorsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
categories BookCategoryCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
characters CharacterCreateNestedManyWithoutBooksInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
fans FollowCreateNestedManyWithoutBookInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutAuthorsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutAuthorsInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput No


AccountUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where AccountWhereUniqueInput No
data AccountUpdateWithoutUserInput | AccountUncheckedUpdateWithoutUserInput No

AccountUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where AccountScalarWhereInput No
data AccountUpdateManyMutationInput | AccountUncheckedUpdateManyWithoutAccountsInput No

AccountScalarWhereInput

Name Type Nullable
AND AccountScalarWhereInput | AccountScalarWhereInput[] No
OR AccountScalarWhereInput[] No
NOT AccountScalarWhereInput | AccountScalarWhereInput[] No
id StringFilter | String No
userId StringFilter | String No
type StringFilter | String No
provider StringFilter | String No
providerAccountId StringFilter | String No
refresh_token StringNullableFilter | String | Null Yes
access_token StringNullableFilter | String | Null Yes
expires_at IntNullableFilter | Int | Null Yes
token_type StringNullableFilter | String | Null Yes
scope StringNullableFilter | String | Null Yes
id_token StringNullableFilter | String | Null Yes
session_state StringNullableFilter | String | Null Yes
oauth_token_secret StringNullableFilter | String | Null Yes
oauth_token StringNullableFilter | String | Null Yes


BlockUpdateWithWhereUniqueWithoutBlockedUserInput

Name Type Nullable
where BlockWhereUniqueInput No
data BlockUpdateWithoutBlockedUserInput | BlockUncheckedUpdateWithoutBlockedUserInput No

BlockUpdateManyWithWhereWithoutBlockedUserInput

Name Type Nullable
where BlockScalarWhereInput No
data BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockingInput No

BlockScalarWhereInput

Name Type Nullable
AND BlockScalarWhereInput | BlockScalarWhereInput[] No
OR BlockScalarWhereInput[] No
NOT BlockScalarWhereInput | BlockScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
entity EnumEntityNullableFilter | Entity | Null Yes
entityId StringNullableFilter | String | Null Yes
blockedId StringFilter | String No
galleryId StringNullableFilter | String | Null Yes
threadId StringNullableFilter | String | Null Yes
userId StringFilter | String No

BlockUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where BlockWhereUniqueInput No
update BlockUpdateWithoutUserInput | BlockUncheckedUpdateWithoutUserInput No
create BlockCreateWithoutUserInput | BlockUncheckedCreateWithoutUserInput No

BlockUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where BlockWhereUniqueInput No
data BlockUpdateWithoutUserInput | BlockUncheckedUpdateWithoutUserInput No

BlockUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where BlockScalarWhereInput No
data BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockedInput No


ChatMessageUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
data ChatMessageUpdateWithoutAuthorInput | ChatMessageUncheckedUpdateWithoutAuthorInput No

ChatMessageUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where ChatMessageScalarWhereInput No
data ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutChatMessagesInput No

ChatMessageScalarWhereInput

Name Type Nullable
AND ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No
OR ChatMessageScalarWhereInput[] No
NOT ChatMessageScalarWhereInput | ChatMessageScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
seen BoolFilter | Boolean No
chatRoomId StringFilter | String No
authorId StringFilter | String No
content StringFilter | String No


CommentUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where CommentWhereUniqueInput No
data CommentUpdateWithoutAuthorInput | CommentUncheckedUpdateWithoutAuthorInput No

CommentUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where CommentScalarWhereInput No
data CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput No

CommentScalarWhereInput

Name Type Nullable
AND CommentScalarWhereInput | CommentScalarWhereInput[] No
OR CommentScalarWhereInput[] No
NOT CommentScalarWhereInput | CommentScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
threadType EnumEntityFilter | Entity No
threadId StringFilter | String No
authorId StringFilter | String No
content StringFilter | String No
visible BoolFilter | Boolean No


CommuneUpdateWithWhereUniqueWithoutOwnerInput

Name Type Nullable
where CommuneWhereUniqueInput No
data CommuneUpdateWithoutOwnerInput | CommuneUncheckedUpdateWithoutOwnerInput No

CommuneUpdateManyWithWhereWithoutOwnerInput

Name Type Nullable
where CommuneScalarWhereInput No
data CommuneUpdateManyMutationInput | CommuneUncheckedUpdateManyWithoutOwnedCommunesInput No

CommuneScalarWhereInput

Name Type Nullable
AND CommuneScalarWhereInput | CommuneScalarWhereInput[] No
OR CommuneScalarWhereInput[] No
NOT CommuneScalarWhereInput | CommuneScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
ownerId StringFilter | String No
entity EnumEntityFilter | Entity No
galleryId StringNullableFilter | String | Null Yes
threadId StringNullableFilter | String | Null Yes


CommuneUserUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where CommuneUserWhereUniqueInput No
data CommuneUserUpdateWithoutUserInput | CommuneUserUncheckedUpdateWithoutUserInput No

CommuneUserUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where CommuneUserScalarWhereInput No
data CommuneUserUpdateManyMutationInput | CommuneUserUncheckedUpdateManyWithoutCommunesInput No

CommuneUserScalarWhereInput

Name Type Nullable
AND CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] No
OR CommuneUserScalarWhereInput[] No
NOT CommuneUserScalarWhereInput | CommuneUserScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
communeId StringFilter | String No
userId StringFilter | String No
role EnumRoleFilter | Role No

FanUpsertWithWhereUniqueWithoutFanInput

Name Type Nullable
where FanWhereUniqueInput No
update FanUpdateWithoutFanInput | FanUncheckedUpdateWithoutFanInput No
create FanCreateWithoutFanInput | FanUncheckedCreateWithoutFanInput No

FanUpdateWithWhereUniqueWithoutFanInput

Name Type Nullable
where FanWhereUniqueInput No
data FanUpdateWithoutFanInput | FanUncheckedUpdateWithoutFanInput No

FanUpdateManyWithWhereWithoutFanInput

Name Type Nullable
where FanScalarWhereInput No
data FanUpdateManyMutationInput | FanUncheckedUpdateManyWithoutFanOfInput No

FanScalarWhereInput

Name Type Nullable
AND FanScalarWhereInput | FanScalarWhereInput[] No
OR FanScalarWhereInput[] No
NOT FanScalarWhereInput | FanScalarWhereInput[] No
id StringFilter | String No
fanId StringFilter | String No
fanOfId StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No

FanUpsertWithWhereUniqueWithoutFanOfInput

Name Type Nullable
where FanWhereUniqueInput No
update FanUpdateWithoutFanOfInput | FanUncheckedUpdateWithoutFanOfInput No
create FanCreateWithoutFanOfInput | FanUncheckedCreateWithoutFanOfInput No

FanUpdateWithWhereUniqueWithoutFanOfInput

Name Type Nullable
where FanWhereUniqueInput No
data FanUpdateWithoutFanOfInput | FanUncheckedUpdateWithoutFanOfInput No

FanUpdateManyWithWhereWithoutFanOfInput

Name Type Nullable
where FanScalarWhereInput No
data FanUpdateManyMutationInput | FanUncheckedUpdateManyWithoutFansInput No


FollowUpdateWithWhereUniqueWithoutFollowerInput

Name Type Nullable
where FollowWhereUniqueInput No
data FollowUpdateWithoutFollowerInput | FollowUncheckedUpdateWithoutFollowerInput No

FollowUpdateManyWithWhereWithoutFollowerInput

Name Type Nullable
where FollowScalarWhereInput No
data FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFollowerInput No

FollowScalarWhereInput

Name Type Nullable
AND FollowScalarWhereInput | FollowScalarWhereInput[] No
OR FollowScalarWhereInput[] No
NOT FollowScalarWhereInput | FollowScalarWhereInput[] No
id StringFilter | String No
followerId StringFilter | String No
followingId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
characterId StringNullableFilter | String | Null Yes
bookId StringNullableFilter | String | Null Yes


FollowUpdateWithWhereUniqueWithoutFollowingInput

Name Type Nullable
where FollowWhereUniqueInput No
data FollowUpdateWithoutFollowingInput | FollowUncheckedUpdateWithoutFollowingInput No

FollowUpdateManyWithWhereWithoutFollowingInput

Name Type Nullable
where FollowScalarWhereInput No
data FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFollowingInput No


GalleryUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where GalleryWhereUniqueInput No
data GalleryUpdateWithoutAuthorInput | GalleryUncheckedUpdateWithoutAuthorInput No

GalleryUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where GalleryScalarWhereInput No
data GalleryUpdateManyMutationInput | GalleryUncheckedUpdateManyWithoutGalleriesInput No

GalleryScalarWhereInput

Name Type Nullable
AND GalleryScalarWhereInput | GalleryScalarWhereInput[] No
OR GalleryScalarWhereInput[] No
NOT GalleryScalarWhereInput | GalleryScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
title StringNullableFilter | String | Null Yes
description StringNullableFilter | String | Null Yes
authorId StringFilter | String No
shareId StringNullableFilter | String | Null Yes


ImageUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where ImageWhereUniqueInput No
data ImageUpdateWithoutAuthorInput | ImageUncheckedUpdateWithoutAuthorInput No

ImageUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where ImageScalarWhereInput No
data ImageUpdateManyMutationInput | ImageUncheckedUpdateManyWithoutImagesInput No

ImageScalarWhereInput

Name Type Nullable
AND ImageScalarWhereInput | ImageScalarWhereInput[] No
OR ImageScalarWhereInput[] No
NOT ImageScalarWhereInput | ImageScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
title StringNullableFilter | String | Null Yes
authorId StringFilter | String No
galleryId StringNullableFilter | String | Null Yes
shareId StringNullableFilter | String | Null Yes
url StringFilter | String No
postId StringNullableFilter | String | Null Yes
height IntNullableFilter | Int | Null Yes
width IntNullableFilter | Int | Null Yes

LikeUpsertWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutAuthorInput | LikeUncheckedUpdateWithoutAuthorInput No
create LikeCreateWithoutAuthorInput | LikeUncheckedCreateWithoutAuthorInput No

LikeUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutAuthorInput | LikeUncheckedUpdateWithoutAuthorInput No

LikeUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput No

LikeScalarWhereInput

Name Type Nullable
AND LikeScalarWhereInput | LikeScalarWhereInput[] No
OR LikeScalarWhereInput[] No
NOT LikeScalarWhereInput | LikeScalarWhereInput[] No
id StringFilter | String No
authorId StringFilter | String No
postId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
galleryId StringNullableFilter | String | Null Yes
imageId StringNullableFilter | String | Null Yes
commentId StringNullableFilter | String | Null Yes
characterId StringNullableFilter | String | Null Yes
bookId StringNullableFilter | String | Null Yes

PostUpsertWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where PostWhereUniqueInput No
update PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput No
create PostCreateWithoutAuthorInput | PostUncheckedCreateWithoutAuthorInput No

PostUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where PostWhereUniqueInput No
data PostUpdateWithoutAuthorInput | PostUncheckedUpdateWithoutAuthorInput No

PostUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where PostScalarWhereInput No
data PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutPostsInput No

PostScalarWhereInput

Name Type Nullable
AND PostScalarWhereInput | PostScalarWhereInput[] No
OR PostScalarWhereInput[] No
NOT PostScalarWhereInput | PostScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
content StringNullableFilter | String | Null Yes
shareId StringNullableFilter | String | Null Yes
commentId StringNullableFilter | String | Null Yes
authorId StringFilter | String No


SessionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where SessionWhereUniqueInput No
data SessionUpdateWithoutUserInput | SessionUncheckedUpdateWithoutUserInput No

SessionUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where SessionScalarWhereInput No
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyWithoutSessionsInput No

SessionScalarWhereInput

Name Type Nullable
AND SessionScalarWhereInput | SessionScalarWhereInput[] No
OR SessionScalarWhereInput[] No
NOT SessionScalarWhereInput | SessionScalarWhereInput[] No
id StringFilter | String No
sessionToken StringFilter | String No
userId StringFilter | String No
expires DateTimeFilter | DateTime No


ShareUpdateWithWhereUniqueWithoutAuthorInput

Name Type Nullable
where ShareWhereUniqueInput No
data ShareUpdateWithoutAuthorInput | ShareUncheckedUpdateWithoutAuthorInput No

ShareUpdateManyWithWhereWithoutAuthorInput

Name Type Nullable
where ShareScalarWhereInput No
data ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput No

ShareScalarWhereInput

Name Type Nullable
AND ShareScalarWhereInput | ShareScalarWhereInput[] No
OR ShareScalarWhereInput[] No
NOT ShareScalarWhereInput | ShareScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
authorId StringFilter | String No
postId StringNullableFilter | String | Null Yes
galleryId StringNullableFilter | String | Null Yes
imageId StringNullableFilter | String | Null Yes


ChatRoomUpdateWithWhereUniqueWithoutUsersInput

Name Type Nullable
where ChatRoomWhereUniqueInput No
data ChatRoomUpdateWithoutUsersInput | ChatRoomUncheckedUpdateWithoutUsersInput No

ChatRoomUpdateManyWithWhereWithoutUsersInput

Name Type Nullable
where ChatRoomScalarWhereInput No
data ChatRoomUpdateManyMutationInput | ChatRoomUncheckedUpdateManyWithoutChatsInput No

ChatRoomScalarWhereInput

Name Type Nullable
AND ChatRoomScalarWhereInput | ChatRoomScalarWhereInput[] No
OR ChatRoomScalarWhereInput[] No
NOT ChatRoomScalarWhereInput | ChatRoomScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
visible BoolFilter | Boolean No
party StringFilter | String No


MembershipUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
level Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null Yes

MembershipUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
level Audience | NullableEnumAudienceFieldUpdateOperationsInput | Null Yes

BookUpsertWithWhereUniqueWithoutAuthorsInput

Name Type Nullable
where BookWhereUniqueInput No
update BookUpdateWithoutAuthorsInput | BookUncheckedUpdateWithoutAuthorsInput No
create BookCreateWithoutAuthorsInput | BookUncheckedCreateWithoutAuthorsInput No

BookUpdateWithWhereUniqueWithoutAuthorsInput

Name Type Nullable
where BookWhereUniqueInput No
data BookUpdateWithoutAuthorsInput | BookUncheckedUpdateWithoutAuthorsInput No

BookUpdateManyWithWhereWithoutAuthorsInput

Name Type Nullable
where BookScalarWhereInput No
data BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput No

BookScalarWhereInput

Name Type Nullable
AND BookScalarWhereInput | BookScalarWhereInput[] No
OR BookScalarWhereInput[] No
NOT BookScalarWhereInput | BookScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
active BoolFilter | Boolean No
status EnumBookStatusNullableFilter | BookStatus | Null Yes
prospect BoolFilter | Boolean No
title StringFilter | String No
cover StringFilter | String No
genreId StringFilter | String No
hook StringNullableFilter | String | Null Yes
synopsis StringNullableFilter | String | Null Yes
back StringNullableFilter | String | Null Yes
words IntFilter | Int No
galleryId StringNullableFilter | String | Null Yes

ImageCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes
author UserCreateNestedOneWithoutImagesInput No
gallery GalleryCreateNestedOneWithoutImagesInput No
likes LikeCreateNestedManyWithoutImageInput No
shares ShareCreateNestedManyWithoutImageInput No

ImageUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
galleryId String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes
likes LikeUncheckedCreateNestedManyWithoutImageInput No
shares ShareUncheckedCreateNestedManyWithoutImageInput No

ImageCreateOrConnectWithoutPostInput

Name Type Nullable
where ImageWhereUniqueInput No
create ImageCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput No

ImageCreateManyPostInputEnvelope

Name Type Nullable
data ImageCreateManyPostInput | ImageCreateManyPostInput[] No
skipDuplicates Boolean No

LikeCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
author UserCreateNestedOneWithoutLikesInput No
comment CommentCreateNestedOneWithoutLikesInput No
gallery GalleryCreateNestedOneWithoutLikesInput No
image ImageCreateNestedOneWithoutLikesInput No
character CharacterCreateNestedOneWithoutLikesInput No
book BookCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
authorId String No
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

LikeCreateOrConnectWithoutPostInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput No

LikeCreateManyPostInputEnvelope

Name Type Nullable
data LikeCreateManyPostInput | LikeCreateManyPostInput[] No
skipDuplicates Boolean No

UserCreateWithoutPostsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutPostsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutPostsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPostsInput | UserUncheckedCreateWithoutPostsInput No

NewsCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
banner String | Null Yes
startDate DateTime | Null Yes
endDate DateTime | Null Yes
audience Audience No
views Int No
priority Int No

NewsUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
banner String | Null Yes
startDate DateTime | Null Yes
endDate DateTime | Null Yes
audience Audience No
views Int No
priority Int No

NewsCreateOrConnectWithoutPostInput

Name Type Nullable
where NewsWhereUniqueInput No
create NewsCreateWithoutPostInput | NewsUncheckedCreateWithoutPostInput No

PostCreateWithoutPost_commentsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
images ImageCreateNestedManyWithoutPostInput No
likes LikeCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
news NewsCreateNestedOneWithoutPostInput No
comment PostCreateNestedOneWithoutPost_commentsInput No
shares ShareCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutPost_commentsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
authorId String No
images ImageUncheckedCreateNestedManyWithoutPostInput No
likes LikeUncheckedCreateNestedManyWithoutPostInput No
news NewsUncheckedCreateNestedOneWithoutPostInput No
shares ShareUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutPost_commentsInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutPost_commentsInput | PostUncheckedCreateWithoutPost_commentsInput No

PostCreateWithoutCommentInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
images ImageCreateNestedManyWithoutPostInput No
likes LikeCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
news NewsCreateNestedOneWithoutPostInput No
post_comments PostCreateNestedManyWithoutCommentInput No
shares ShareCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutCommentInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
authorId String No
images ImageUncheckedCreateNestedManyWithoutPostInput No
likes LikeUncheckedCreateNestedManyWithoutPostInput No
news NewsUncheckedCreateNestedOneWithoutPostInput No
post_comments PostUncheckedCreateNestedManyWithoutCommentInput No
shares ShareUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutCommentInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput No

PostCreateManyCommentInputEnvelope

Name Type Nullable
data PostCreateManyCommentInput | PostCreateManyCommentInput[] No
skipDuplicates Boolean No

ShareCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
author UserCreateNestedOneWithoutSharesInput No
gallery GalleryCreateNestedOneWithoutSharesInput No
image ImageCreateNestedOneWithoutSharesInput No

ShareUncheckedCreateWithoutPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
galleryId String | Null Yes
imageId String | Null Yes

ShareCreateOrConnectWithoutPostInput

Name Type Nullable
where ShareWhereUniqueInput No
create ShareCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput No

ShareCreateManyPostInputEnvelope

Name Type Nullable
data ShareCreateManyPostInput | ShareCreateManyPostInput[] No
skipDuplicates Boolean No

ImageUpsertWithWhereUniqueWithoutPostInput

Name Type Nullable
where ImageWhereUniqueInput No
update ImageUpdateWithoutPostInput | ImageUncheckedUpdateWithoutPostInput No
create ImageCreateWithoutPostInput | ImageUncheckedCreateWithoutPostInput No

ImageUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where ImageWhereUniqueInput No
data ImageUpdateWithoutPostInput | ImageUncheckedUpdateWithoutPostInput No

ImageUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where ImageScalarWhereInput No
data ImageUpdateManyMutationInput | ImageUncheckedUpdateManyWithoutImagesInput No

LikeUpsertWithWhereUniqueWithoutPostInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutPostInput | LikeUncheckedUpdateWithoutPostInput No
create LikeCreateWithoutPostInput | LikeUncheckedCreateWithoutPostInput No

LikeUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutPostInput | LikeUncheckedUpdateWithoutPostInput No

LikeUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput No


UserUpdateWithoutPostsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutPostsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


NewsUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
audience Audience | EnumAudienceFieldUpdateOperationsInput No
views Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No

NewsUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
endDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
audience Audience | EnumAudienceFieldUpdateOperationsInput No
views Int | IntFieldUpdateOperationsInput No
priority Int | IntFieldUpdateOperationsInput No




PostUpsertWithWhereUniqueWithoutCommentInput

Name Type Nullable
where PostWhereUniqueInput No
update PostUpdateWithoutCommentInput | PostUncheckedUpdateWithoutCommentInput No
create PostCreateWithoutCommentInput | PostUncheckedCreateWithoutCommentInput No

PostUpdateWithWhereUniqueWithoutCommentInput

Name Type Nullable
where PostWhereUniqueInput No
data PostUpdateWithoutCommentInput | PostUncheckedUpdateWithoutCommentInput No

PostUpdateManyWithWhereWithoutCommentInput

Name Type Nullable
where PostScalarWhereInput No
data PostUpdateManyMutationInput | PostUncheckedUpdateManyWithoutPost_commentsInput No

ShareUpsertWithWhereUniqueWithoutPostInput

Name Type Nullable
where ShareWhereUniqueInput No
update ShareUpdateWithoutPostInput | ShareUncheckedUpdateWithoutPostInput No
create ShareCreateWithoutPostInput | ShareUncheckedCreateWithoutPostInput No

ShareUpdateWithWhereUniqueWithoutPostInput

Name Type Nullable
where ShareWhereUniqueInput No
data ShareUpdateWithoutPostInput | ShareUncheckedUpdateWithoutPostInput No

ShareUpdateManyWithWhereWithoutPostInput

Name Type Nullable
where ShareScalarWhereInput No
data ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput No

PostCreateWithoutNewsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
images ImageCreateNestedManyWithoutPostInput No
likes LikeCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
comment PostCreateNestedOneWithoutPost_commentsInput No
post_comments PostCreateNestedManyWithoutCommentInput No
shares ShareCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutNewsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
authorId String No
images ImageUncheckedCreateNestedManyWithoutPostInput No
likes LikeUncheckedCreateNestedManyWithoutPostInput No
post_comments PostUncheckedCreateNestedManyWithoutCommentInput No
shares ShareUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutNewsInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutNewsInput | PostUncheckedCreateWithoutNewsInput No




BlockCreateWithoutBlockedGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedUser UserCreateNestedOneWithoutBlockingInput No
blockedThread CommentThreadCreateNestedOneWithoutBlockedInput No
user UserCreateNestedOneWithoutBlockedInput No

BlockUncheckedCreateWithoutBlockedGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
threadId String | Null Yes
userId String No

BlockCreateOrConnectWithoutBlockedGalleryInput

Name Type Nullable
where BlockWhereUniqueInput No
create BlockCreateWithoutBlockedGalleryInput | BlockUncheckedCreateWithoutBlockedGalleryInput No

BlockCreateManyBlockedGalleryInputEnvelope

Name Type Nullable
data BlockCreateManyBlockedGalleryInput | BlockCreateManyBlockedGalleryInput[] No
skipDuplicates Boolean No

CommuneCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
owner UserCreateNestedOneWithoutOwnedCommunesInput No
thread CommentThreadCreateNestedOneWithoutCommuneInput No
users CommuneUserCreateNestedManyWithoutCommuneInput No

CommuneUncheckedCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
ownerId String No
entity Entity No
threadId String | Null Yes
users CommuneUserUncheckedCreateNestedManyWithoutCommuneInput No

CommuneCreateOrConnectWithoutGalleryInput

Name Type Nullable
where CommuneWhereUniqueInput No
create CommuneCreateWithoutGalleryInput | CommuneUncheckedCreateWithoutGalleryInput No

UserCreateWithoutGalleriesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutGalleriesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutGalleriesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutGalleriesInput | UserUncheckedCreateWithoutGalleriesInput No

ImageCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes
author UserCreateNestedOneWithoutImagesInput No
post PostCreateNestedOneWithoutImagesInput No
likes LikeCreateNestedManyWithoutImageInput No
shares ShareCreateNestedManyWithoutImageInput No

ImageUncheckedCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes
likes LikeUncheckedCreateNestedManyWithoutImageInput No
shares ShareUncheckedCreateNestedManyWithoutImageInput No

ImageCreateOrConnectWithoutGalleryInput

Name Type Nullable
where ImageWhereUniqueInput No
create ImageCreateWithoutGalleryInput | ImageUncheckedCreateWithoutGalleryInput No

ImageCreateManyGalleryInputEnvelope

Name Type Nullable
data ImageCreateManyGalleryInput | ImageCreateManyGalleryInput[] No
skipDuplicates Boolean No

LikeCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
author UserCreateNestedOneWithoutLikesInput No
comment CommentCreateNestedOneWithoutLikesInput No
image ImageCreateNestedOneWithoutLikesInput No
post PostCreateNestedOneWithoutLikesInput No
character CharacterCreateNestedOneWithoutLikesInput No
book BookCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutGalleryInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

LikeCreateOrConnectWithoutGalleryInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput No

LikeCreateManyGalleryInputEnvelope

Name Type Nullable
data LikeCreateManyGalleryInput | LikeCreateManyGalleryInput[] No
skipDuplicates Boolean No

ShareCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
author UserCreateNestedOneWithoutSharesInput No
image ImageCreateNestedOneWithoutSharesInput No
post PostCreateNestedOneWithoutSharesInput No

ShareUncheckedCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String | Null Yes
imageId String | Null Yes

ShareCreateOrConnectWithoutGalleryInput

Name Type Nullable
where ShareWhereUniqueInput No
create ShareCreateWithoutGalleryInput | ShareUncheckedCreateWithoutGalleryInput No

ShareCreateManyGalleryInputEnvelope

Name Type Nullable
data ShareCreateManyGalleryInput | ShareCreateManyGalleryInput[] No
skipDuplicates Boolean No

BookCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
categories BookCategoryCreateNestedManyWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
characters CharacterCreateNestedManyWithoutBooksInput No
fans FollowCreateNestedManyWithoutBookInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
authors UserUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutGalleryInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutGalleryInput | BookUncheckedCreateWithoutGalleryInput No

CharacterCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
likes LikeCreateNestedManyWithoutCharacterInput No
fans FollowCreateNestedManyWithoutCharacterInput No
books BookCreateNestedManyWithoutCharactersInput No
chapters ChapterCreateNestedManyWithoutCharactersInput No

CharacterUncheckedCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
likes LikeUncheckedCreateNestedManyWithoutCharacterInput No
fans FollowUncheckedCreateNestedManyWithoutCharacterInput No
books BookUncheckedCreateNestedManyWithoutCharactersInput No
chapters ChapterUncheckedCreateNestedManyWithoutCharactersInput No

CharacterCreateOrConnectWithoutGalleryInput

Name Type Nullable
where CharacterWhereUniqueInput No
create CharacterCreateWithoutGalleryInput | CharacterUncheckedCreateWithoutGalleryInput No

ChapterCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
characters CharacterCreateNestedManyWithoutChaptersInput No
book BookCreateNestedOneWithoutChaptersInput No

ChapterUncheckedCreateWithoutGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
bookId String No
characters CharacterUncheckedCreateNestedManyWithoutChaptersInput No

ChapterCreateOrConnectWithoutGalleryInput

Name Type Nullable
where ChapterWhereUniqueInput No
create ChapterCreateWithoutGalleryInput | ChapterUncheckedCreateWithoutGalleryInput No


BlockUpdateWithWhereUniqueWithoutBlockedGalleryInput

Name Type Nullable
where BlockWhereUniqueInput No
data BlockUpdateWithoutBlockedGalleryInput | BlockUncheckedUpdateWithoutBlockedGalleryInput No

BlockUpdateManyWithWhereWithoutBlockedGalleryInput

Name Type Nullable
where BlockScalarWhereInput No
data BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockingInput No



CommuneUncheckedUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
ownerId String | StringFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
users CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput No


UserUpdateWithoutGalleriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutGalleriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


ImageUpdateWithWhereUniqueWithoutGalleryInput

Name Type Nullable
where ImageWhereUniqueInput No
data ImageUpdateWithoutGalleryInput | ImageUncheckedUpdateWithoutGalleryInput No

ImageUpdateManyWithWhereWithoutGalleryInput

Name Type Nullable
where ImageScalarWhereInput No
data ImageUpdateManyMutationInput | ImageUncheckedUpdateManyWithoutImagesInput No

LikeUpsertWithWhereUniqueWithoutGalleryInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutGalleryInput | LikeUncheckedUpdateWithoutGalleryInput No
create LikeCreateWithoutGalleryInput | LikeUncheckedCreateWithoutGalleryInput No

LikeUpdateWithWhereUniqueWithoutGalleryInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutGalleryInput | LikeUncheckedUpdateWithoutGalleryInput No

LikeUpdateManyWithWhereWithoutGalleryInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput No


ShareUpdateWithWhereUniqueWithoutGalleryInput

Name Type Nullable
where ShareWhereUniqueInput No
data ShareUpdateWithoutGalleryInput | ShareUncheckedUpdateWithoutGalleryInput No

ShareUpdateManyWithWhereWithoutGalleryInput

Name Type Nullable
where ShareScalarWhereInput No
data ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput No


BookUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No


CharacterUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
likes LikeUpdateManyWithoutCharacterNestedInput No
fans FollowUpdateManyWithoutCharacterNestedInput No
books BookUpdateManyWithoutCharactersNestedInput No
chapters ChapterUpdateManyWithoutCharactersNestedInput No

CharacterUncheckedUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
likes LikeUncheckedUpdateManyWithoutCharacterNestedInput No
fans FollowUncheckedUpdateManyWithoutCharacterNestedInput No
books BookUncheckedUpdateManyWithoutCharactersNestedInput No
chapters ChapterUncheckedUpdateManyWithoutCharactersNestedInput No


ChapterUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
characters CharacterUpdateManyWithoutChaptersNestedInput No
book BookUpdateOneRequiredWithoutChaptersNestedInput No

ChapterUncheckedUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
bookId String | StringFieldUpdateOperationsInput No
characters CharacterUncheckedUpdateManyWithoutChaptersNestedInput No

UserCreateWithoutImagesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutImagesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutImagesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutImagesInput | UserUncheckedCreateWithoutImagesInput No

GalleryCreateWithoutImagesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutImagesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutImagesInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutImagesInput | GalleryUncheckedCreateWithoutImagesInput No

PostCreateWithoutImagesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
likes LikeCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
news NewsCreateNestedOneWithoutPostInput No
comment PostCreateNestedOneWithoutPost_commentsInput No
post_comments PostCreateNestedManyWithoutCommentInput No
shares ShareCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutImagesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
authorId String No
likes LikeUncheckedCreateNestedManyWithoutPostInput No
news NewsUncheckedCreateNestedOneWithoutPostInput No
post_comments PostUncheckedCreateNestedManyWithoutCommentInput No
shares ShareUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutImagesInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutImagesInput | PostUncheckedCreateWithoutImagesInput No

LikeCreateWithoutImageInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
author UserCreateNestedOneWithoutLikesInput No
comment CommentCreateNestedOneWithoutLikesInput No
gallery GalleryCreateNestedOneWithoutLikesInput No
post PostCreateNestedOneWithoutLikesInput No
character CharacterCreateNestedOneWithoutLikesInput No
book BookCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutImageInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

LikeCreateOrConnectWithoutImageInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput No

LikeCreateManyImageInputEnvelope

Name Type Nullable
data LikeCreateManyImageInput | LikeCreateManyImageInput[] No
skipDuplicates Boolean No

ShareCreateWithoutImageInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
author UserCreateNestedOneWithoutSharesInput No
gallery GalleryCreateNestedOneWithoutSharesInput No
post PostCreateNestedOneWithoutSharesInput No

ShareUncheckedCreateWithoutImageInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String | Null Yes
galleryId String | Null Yes

ShareCreateOrConnectWithoutImageInput

Name Type Nullable
where ShareWhereUniqueInput No
create ShareCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput No

ShareCreateManyImageInputEnvelope

Name Type Nullable
data ShareCreateManyImageInput | ShareCreateManyImageInput[] No
skipDuplicates Boolean No


UserUpdateWithoutImagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutImagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


GalleryUpdateWithoutImagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutImagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No




LikeUpsertWithWhereUniqueWithoutImageInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutImageInput | LikeUncheckedUpdateWithoutImageInput No
create LikeCreateWithoutImageInput | LikeUncheckedCreateWithoutImageInput No

LikeUpdateWithWhereUniqueWithoutImageInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutImageInput | LikeUncheckedUpdateWithoutImageInput No

LikeUpdateManyWithWhereWithoutImageInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput No

ShareUpsertWithWhereUniqueWithoutImageInput

Name Type Nullable
where ShareWhereUniqueInput No
update ShareUpdateWithoutImageInput | ShareUncheckedUpdateWithoutImageInput No
create ShareCreateWithoutImageInput | ShareUncheckedCreateWithoutImageInput No

ShareUpdateWithWhereUniqueWithoutImageInput

Name Type Nullable
where ShareWhereUniqueInput No
data ShareUpdateWithoutImageInput | ShareUncheckedUpdateWithoutImageInput No

ShareUpdateManyWithWhereWithoutImageInput

Name Type Nullable
where ShareScalarWhereInput No
data ShareUpdateManyMutationInput | ShareUncheckedUpdateManyWithoutSharesInput No

UserCreateWithoutLikesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutLikesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutLikesInput | UserUncheckedCreateWithoutLikesInput No

CommentCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
content String No
visible Boolean No
author UserCreateNestedOneWithoutCommentsInput No
thread CommentThreadCreateNestedOneWithoutCommentsInput No

CommentUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
threadId String No
authorId String No
content String No
visible Boolean No

CommentCreateOrConnectWithoutLikesInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutLikesInput | CommentUncheckedCreateWithoutLikesInput No

GalleryCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutLikesInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutLikesInput | GalleryUncheckedCreateWithoutLikesInput No

ImageCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes
author UserCreateNestedOneWithoutImagesInput No
gallery GalleryCreateNestedOneWithoutImagesInput No
post PostCreateNestedOneWithoutImagesInput No
shares ShareCreateNestedManyWithoutImageInput No

ImageUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
galleryId String | Null Yes
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes
shares ShareUncheckedCreateNestedManyWithoutImageInput No

ImageCreateOrConnectWithoutLikesInput

Name Type Nullable
where ImageWhereUniqueInput No
create ImageCreateWithoutLikesInput | ImageUncheckedCreateWithoutLikesInput No

PostCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
images ImageCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
news NewsCreateNestedOneWithoutPostInput No
comment PostCreateNestedOneWithoutPost_commentsInput No
post_comments PostCreateNestedManyWithoutCommentInput No
shares ShareCreateNestedManyWithoutPostInput No

PostUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
authorId String No
images ImageUncheckedCreateNestedManyWithoutPostInput No
news NewsUncheckedCreateNestedOneWithoutPostInput No
post_comments PostUncheckedCreateNestedManyWithoutCommentInput No
shares ShareUncheckedCreateNestedManyWithoutPostInput No

PostCreateOrConnectWithoutLikesInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutLikesInput | PostUncheckedCreateWithoutLikesInput No

CharacterCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
fans FollowCreateNestedManyWithoutCharacterInput No
books BookCreateNestedManyWithoutCharactersInput No
chapters ChapterCreateNestedManyWithoutCharactersInput No
gallery GalleryCreateNestedOneWithoutCharacter_galleryInput No

CharacterUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String | Null Yes
fans FollowUncheckedCreateNestedManyWithoutCharacterInput No
books BookUncheckedCreateNestedManyWithoutCharactersInput No
chapters ChapterUncheckedCreateNestedManyWithoutCharactersInput No

CharacterCreateOrConnectWithoutLikesInput

Name Type Nullable
where CharacterWhereUniqueInput No
create CharacterCreateWithoutLikesInput | CharacterUncheckedCreateWithoutLikesInput No

BookCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
categories BookCategoryCreateNestedManyWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
characters CharacterCreateNestedManyWithoutBooksInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
fans FollowCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutLikesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
authors UserUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutLikesInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutLikesInput | BookUncheckedCreateWithoutLikesInput No


UserUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No



CommentUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
threadId String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No


GalleryUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No



ImageUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes
shares ShareUncheckedUpdateManyWithoutImageNestedInput No





CharacterUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
fans FollowUpdateManyWithoutCharacterNestedInput No
books BookUpdateManyWithoutCharactersNestedInput No
chapters ChapterUpdateManyWithoutCharactersNestedInput No
gallery GalleryUpdateOneWithoutCharacter_galleryNestedInput No

CharacterUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
fans FollowUncheckedUpdateManyWithoutCharacterNestedInput No
books BookUncheckedUpdateManyWithoutCharactersNestedInput No
chapters ChapterUncheckedUpdateManyWithoutCharactersNestedInput No


BookUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No

UserCreateWithoutSharesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutSharesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutSharesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSharesInput | UserUncheckedCreateWithoutSharesInput No

GalleryCreateWithoutSharesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutSharesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutSharesInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutSharesInput | GalleryUncheckedCreateWithoutSharesInput No

ImageCreateWithoutSharesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes
author UserCreateNestedOneWithoutImagesInput No
gallery GalleryCreateNestedOneWithoutImagesInput No
post PostCreateNestedOneWithoutImagesInput No
likes LikeCreateNestedManyWithoutImageInput No

ImageUncheckedCreateWithoutSharesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
galleryId String | Null Yes
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes
likes LikeUncheckedCreateNestedManyWithoutImageInput No

ImageCreateOrConnectWithoutSharesInput

Name Type Nullable
where ImageWhereUniqueInput No
create ImageCreateWithoutSharesInput | ImageUncheckedCreateWithoutSharesInput No

PostCreateWithoutSharesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
images ImageCreateNestedManyWithoutPostInput No
likes LikeCreateNestedManyWithoutPostInput No
author UserCreateNestedOneWithoutPostsInput No
news NewsCreateNestedOneWithoutPostInput No
comment PostCreateNestedOneWithoutPost_commentsInput No
post_comments PostCreateNestedManyWithoutCommentInput No

PostUncheckedCreateWithoutSharesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes
authorId String No
images ImageUncheckedCreateNestedManyWithoutPostInput No
likes LikeUncheckedCreateNestedManyWithoutPostInput No
news NewsUncheckedCreateNestedOneWithoutPostInput No
post_comments PostUncheckedCreateNestedManyWithoutCommentInput No

PostCreateOrConnectWithoutSharesInput

Name Type Nullable
where PostWhereUniqueInput No
create PostCreateWithoutSharesInput | PostUncheckedCreateWithoutSharesInput No


UserUpdateWithoutSharesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutSharesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


GalleryUpdateWithoutSharesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutSharesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No



ImageUncheckedUpdateWithoutSharesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutImageNestedInput No




UserCreateWithoutFollowerInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutFollowerInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutFollowerInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFollowerInput | UserUncheckedCreateWithoutFollowerInput No

UserCreateWithoutFollowingInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutFollowingInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutFollowingInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFollowingInput | UserUncheckedCreateWithoutFollowingInput No

CharacterCreateWithoutFansInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
likes LikeCreateNestedManyWithoutCharacterInput No
books BookCreateNestedManyWithoutCharactersInput No
chapters ChapterCreateNestedManyWithoutCharactersInput No
gallery GalleryCreateNestedOneWithoutCharacter_galleryInput No

CharacterUncheckedCreateWithoutFansInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String | Null Yes
likes LikeUncheckedCreateNestedManyWithoutCharacterInput No
books BookUncheckedCreateNestedManyWithoutCharactersInput No
chapters ChapterUncheckedCreateNestedManyWithoutCharactersInput No

CharacterCreateOrConnectWithoutFansInput

Name Type Nullable
where CharacterWhereUniqueInput No
create CharacterCreateWithoutFansInput | CharacterUncheckedCreateWithoutFansInput No

BookCreateWithoutFansInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
categories BookCategoryCreateNestedManyWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
characters CharacterCreateNestedManyWithoutBooksInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutFansInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
authors UserUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutFansInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutFansInput | BookUncheckedCreateWithoutFansInput No


UserUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


UserUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


CharacterUpdateWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
likes LikeUpdateManyWithoutCharacterNestedInput No
books BookUpdateManyWithoutCharactersNestedInput No
chapters ChapterUpdateManyWithoutCharactersNestedInput No
gallery GalleryUpdateOneWithoutCharacter_galleryNestedInput No

CharacterUncheckedUpdateWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutCharacterNestedInput No
books BookUncheckedUpdateManyWithoutCharactersNestedInput No
chapters ChapterUncheckedUpdateManyWithoutCharactersNestedInput No


BookUpdateWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No

UserCreateWithoutFanOfInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutFanOfInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutFanOfInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFanOfInput | UserUncheckedCreateWithoutFanOfInput No

UserCreateWithoutFansInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutFansInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutFansInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFansInput | UserUncheckedCreateWithoutFansInput No


UserUpdateWithoutFanOfInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutFanOfInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


UserUpdateWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

ChatMessageCreateWithoutChatRoomInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
content String No
author UserCreateNestedOneWithoutChatMessagesInput No

ChatMessageUncheckedCreateWithoutChatRoomInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
authorId String No
content String No

ChatMessageCreateOrConnectWithoutChatRoomInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
create ChatMessageCreateWithoutChatRoomInput | ChatMessageUncheckedCreateWithoutChatRoomInput No

ChatMessageCreateManyChatRoomInputEnvelope

Name Type Nullable
data ChatMessageCreateManyChatRoomInput | ChatMessageCreateManyChatRoomInput[] No
skipDuplicates Boolean No

UserCreateWithoutChatsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutChatsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutChatsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput No


ChatMessageUpdateWithWhereUniqueWithoutChatRoomInput

Name Type Nullable
where ChatMessageWhereUniqueInput No
data ChatMessageUpdateWithoutChatRoomInput | ChatMessageUncheckedUpdateWithoutChatRoomInput No

ChatMessageUpdateManyWithWhereWithoutChatRoomInput

Name Type Nullable
where ChatMessageScalarWhereInput No
data ChatMessageUpdateManyMutationInput | ChatMessageUncheckedUpdateManyWithoutMessagesInput No

UserUpsertWithWhereUniqueWithoutChatsInput

Name Type Nullable
where UserWhereUniqueInput No
update UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput No
create UserCreateWithoutChatsInput | UserUncheckedCreateWithoutChatsInput No

UserUpdateWithWhereUniqueWithoutChatsInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutChatsInput | UserUncheckedUpdateWithoutChatsInput No

UserUpdateManyWithWhereWithoutChatsInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutUsersInput No

UserScalarWhereInput

Name Type Nullable
AND UserScalarWhereInput | UserScalarWhereInput[] No
OR UserScalarWhereInput[] No
NOT UserScalarWhereInput | UserScalarWhereInput[] No
id StringFilter | String No
name StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
emailVerified DateTimeNullableFilter | DateTime | Null Yes
image StringNullableFilter | String | Null Yes
membershipId StringNullableFilter | String | Null Yes

UserCreateWithoutChatMessagesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutChatMessagesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutChatMessagesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutChatMessagesInput | UserUncheckedCreateWithoutChatMessagesInput No

ChatRoomCreateWithoutMessagesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No
users UserCreateNestedManyWithoutChatsInput No

ChatRoomUncheckedCreateWithoutMessagesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No
users UserUncheckedCreateNestedManyWithoutChatsInput No

ChatRoomCreateOrConnectWithoutMessagesInput

Name Type Nullable
where ChatRoomWhereUniqueInput No
create ChatRoomCreateWithoutMessagesInput | ChatRoomUncheckedCreateWithoutMessagesInput No


UserUpdateWithoutChatMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutChatMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


ChatRoomUpdateWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No
users UserUpdateManyWithoutChatsNestedInput No

ChatRoomUncheckedUpdateWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No
users UserUncheckedUpdateManyWithoutChatsNestedInput No

BlockCreateWithoutBlockedThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedUser UserCreateNestedOneWithoutBlockingInput No
blockedGallery GalleryCreateNestedOneWithoutBlockingInput No
user UserCreateNestedOneWithoutBlockedInput No

BlockUncheckedCreateWithoutBlockedThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
galleryId String | Null Yes
userId String No

BlockCreateOrConnectWithoutBlockedThreadInput

Name Type Nullable
where BlockWhereUniqueInput No
create BlockCreateWithoutBlockedThreadInput | BlockUncheckedCreateWithoutBlockedThreadInput No

BlockCreateManyBlockedThreadInputEnvelope

Name Type Nullable
data BlockCreateManyBlockedThreadInput | BlockCreateManyBlockedThreadInput[] No
skipDuplicates Boolean No

CommentCreateWithoutThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
content String No
visible Boolean No
author UserCreateNestedOneWithoutCommentsInput No
likes LikeCreateNestedManyWithoutCommentInput No

CommentUncheckedCreateWithoutThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
authorId String No
content String No
visible Boolean No
likes LikeUncheckedCreateNestedManyWithoutCommentInput No

CommentCreateOrConnectWithoutThreadInput

Name Type Nullable
where CommentWhereUniqueInput No
create CommentCreateWithoutThreadInput | CommentUncheckedCreateWithoutThreadInput No

CommentCreateManyThreadInputEnvelope

Name Type Nullable
data CommentCreateManyThreadInput | CommentCreateManyThreadInput[] No
skipDuplicates Boolean No

CommuneCreateWithoutThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
gallery GalleryCreateNestedOneWithoutCommuneInput No
owner UserCreateNestedOneWithoutOwnedCommunesInput No
users CommuneUserCreateNestedManyWithoutCommuneInput No

CommuneUncheckedCreateWithoutThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
ownerId String No
entity Entity No
galleryId String | Null Yes
users CommuneUserUncheckedCreateNestedManyWithoutCommuneInput No

CommuneCreateOrConnectWithoutThreadInput

Name Type Nullable
where CommuneWhereUniqueInput No
create CommuneCreateWithoutThreadInput | CommuneUncheckedCreateWithoutThreadInput No


BlockUpdateWithWhereUniqueWithoutBlockedThreadInput

Name Type Nullable
where BlockWhereUniqueInput No
data BlockUpdateWithoutBlockedThreadInput | BlockUncheckedUpdateWithoutBlockedThreadInput No

BlockUpdateManyWithWhereWithoutBlockedThreadInput

Name Type Nullable
where BlockScalarWhereInput No
data BlockUpdateManyMutationInput | BlockUncheckedUpdateManyWithoutBlockedInput No


CommentUpdateWithWhereUniqueWithoutThreadInput

Name Type Nullable
where CommentWhereUniqueInput No
data CommentUpdateWithoutThreadInput | CommentUncheckedUpdateWithoutThreadInput No

CommentUpdateManyWithWhereWithoutThreadInput

Name Type Nullable
where CommentScalarWhereInput No
data CommentUpdateManyMutationInput | CommentUncheckedUpdateManyWithoutCommentsInput No



CommuneUncheckedUpdateWithoutThreadInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
ownerId String | StringFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
users CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput No

UserCreateWithoutCommentsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutCommentsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutCommentsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCommentsInput | UserUncheckedCreateWithoutCommentsInput No

CommentThreadCreateWithoutCommentsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
blocked BlockCreateNestedManyWithoutBlockedThreadInput No
commune CommuneCreateNestedOneWithoutThreadInput No

CommentThreadUncheckedCreateWithoutCommentsInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
blocked BlockUncheckedCreateNestedManyWithoutBlockedThreadInput No
commune CommuneUncheckedCreateNestedOneWithoutThreadInput No

CommentThreadCreateOrConnectWithoutCommentsInput

Name Type Nullable
where CommentThreadWhereUniqueInput No
create CommentThreadCreateWithoutCommentsInput | CommentThreadUncheckedCreateWithoutCommentsInput No

LikeCreateWithoutCommentInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
author UserCreateNestedOneWithoutLikesInput No
gallery GalleryCreateNestedOneWithoutLikesInput No
image ImageCreateNestedOneWithoutLikesInput No
post PostCreateNestedOneWithoutLikesInput No
character CharacterCreateNestedOneWithoutLikesInput No
book BookCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutCommentInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

LikeCreateOrConnectWithoutCommentInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput No

LikeCreateManyCommentInputEnvelope

Name Type Nullable
data LikeCreateManyCommentInput | LikeCreateManyCommentInput[] No
skipDuplicates Boolean No


UserUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


CommentThreadUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No
blocked BlockUpdateManyWithoutBlockedThreadNestedInput No
commune CommuneUpdateOneWithoutThreadNestedInput No

CommentThreadUncheckedUpdateWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No
blocked BlockUncheckedUpdateManyWithoutBlockedThreadNestedInput No
commune CommuneUncheckedUpdateOneWithoutThreadNestedInput No

LikeUpsertWithWhereUniqueWithoutCommentInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutCommentInput | LikeUncheckedUpdateWithoutCommentInput No
create LikeCreateWithoutCommentInput | LikeUncheckedCreateWithoutCommentInput No

LikeUpdateWithWhereUniqueWithoutCommentInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutCommentInput | LikeUncheckedUpdateWithoutCommentInput No

LikeUpdateManyWithWhereWithoutCommentInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput No

GalleryCreateWithoutCommuneInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutCommuneInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutCommuneInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutCommuneInput | GalleryUncheckedCreateWithoutCommuneInput No

UserCreateWithoutOwnedCommunesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutOwnedCommunesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutOwnedCommunesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutOwnedCommunesInput | UserUncheckedCreateWithoutOwnedCommunesInput No

CommentThreadCreateWithoutCommuneInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
blocked BlockCreateNestedManyWithoutBlockedThreadInput No
comments CommentCreateNestedManyWithoutThreadInput No

CommentThreadUncheckedCreateWithoutCommuneInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
blocked BlockUncheckedCreateNestedManyWithoutBlockedThreadInput No
comments CommentUncheckedCreateNestedManyWithoutThreadInput No

CommentThreadCreateOrConnectWithoutCommuneInput

Name Type Nullable
where CommentThreadWhereUniqueInput No
create CommentThreadCreateWithoutCommuneInput | CommentThreadUncheckedCreateWithoutCommuneInput No

CommuneUserCreateWithoutCommuneInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
role Role No
user UserCreateNestedOneWithoutCommunesInput No

CommuneUserUncheckedCreateWithoutCommuneInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
userId String No
role Role No

CommuneUserCreateOrConnectWithoutCommuneInput

Name Type Nullable
where CommuneUserWhereUniqueInput No
create CommuneUserCreateWithoutCommuneInput | CommuneUserUncheckedCreateWithoutCommuneInput No

CommuneUserCreateManyCommuneInputEnvelope

Name Type Nullable
data CommuneUserCreateManyCommuneInput | CommuneUserCreateManyCommuneInput[] No
skipDuplicates Boolean No


GalleryUpdateWithoutCommuneInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutCommuneInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No


UserUpdateWithoutOwnedCommunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutOwnedCommunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


CommentThreadUpdateWithoutCommuneInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No
blocked BlockUpdateManyWithoutBlockedThreadNestedInput No
comments CommentUpdateManyWithoutThreadNestedInput No

CommentThreadUncheckedUpdateWithoutCommuneInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No
blocked BlockUncheckedUpdateManyWithoutBlockedThreadNestedInput No
comments CommentUncheckedUpdateManyWithoutThreadNestedInput No


CommuneUserUpdateWithWhereUniqueWithoutCommuneInput

Name Type Nullable
where CommuneUserWhereUniqueInput No
data CommuneUserUpdateWithoutCommuneInput | CommuneUserUncheckedUpdateWithoutCommuneInput No

CommuneUserUpdateManyWithWhereWithoutCommuneInput

Name Type Nullable
where CommuneUserScalarWhereInput No
data CommuneUserUpdateManyMutationInput | CommuneUserUncheckedUpdateManyWithoutUsersInput No

CommuneCreateWithoutUsersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
gallery GalleryCreateNestedOneWithoutCommuneInput No
owner UserCreateNestedOneWithoutOwnedCommunesInput No
thread CommentThreadCreateNestedOneWithoutCommuneInput No

CommuneUncheckedCreateWithoutUsersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
ownerId String No
entity Entity No
galleryId String | Null Yes
threadId String | Null Yes

CommuneCreateOrConnectWithoutUsersInput

Name Type Nullable
where CommuneWhereUniqueInput No
create CommuneCreateWithoutUsersInput | CommuneUncheckedCreateWithoutUsersInput No

UserCreateWithoutCommunesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutCommunesInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutCommunesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCommunesInput | UserUncheckedCreateWithoutCommunesInput No



CommuneUncheckedUpdateWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
ownerId String | StringFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes


UserUpdateWithoutCommunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutCommunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

UserCreateWithoutMembershipInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutMembershipInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutMembershipInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutMembershipInput | UserUncheckedCreateWithoutMembershipInput No


UserUpdateWithoutMembershipInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutMembershipInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

BookCreateWithoutGenreInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
categories BookCategoryCreateNestedManyWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
characters CharacterCreateNestedManyWithoutBooksInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
fans FollowCreateNestedManyWithoutBookInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutGenreInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
authors UserUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutGenreInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput No

BookCreateManyGenreInputEnvelope

Name Type Nullable
data BookCreateManyGenreInput | BookCreateManyGenreInput[] No
skipDuplicates Boolean No

CoversCreateWithoutGenreInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No

CoversUncheckedCreateWithoutGenreInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No

CoversCreateOrConnectWithoutGenreInput

Name Type Nullable
where CoversWhereUniqueInput No
create CoversCreateWithoutGenreInput | CoversUncheckedCreateWithoutGenreInput No

CoversCreateManyGenreInputEnvelope

Name Type Nullable
data CoversCreateManyGenreInput | CoversCreateManyGenreInput[] No
skipDuplicates Boolean No

BookUpsertWithWhereUniqueWithoutGenreInput

Name Type Nullable
where BookWhereUniqueInput No
update BookUpdateWithoutGenreInput | BookUncheckedUpdateWithoutGenreInput No
create BookCreateWithoutGenreInput | BookUncheckedCreateWithoutGenreInput No

BookUpdateWithWhereUniqueWithoutGenreInput

Name Type Nullable
where BookWhereUniqueInput No
data BookUpdateWithoutGenreInput | BookUncheckedUpdateWithoutGenreInput No

BookUpdateManyWithWhereWithoutGenreInput

Name Type Nullable
where BookScalarWhereInput No
data BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput No


CoversUpdateWithWhereUniqueWithoutGenreInput

Name Type Nullable
where CoversWhereUniqueInput No
data CoversUpdateWithoutGenreInput | CoversUncheckedUpdateWithoutGenreInput No

CoversUpdateManyWithWhereWithoutGenreInput

Name Type Nullable
where CoversScalarWhereInput No
data CoversUpdateManyMutationInput | CoversUncheckedUpdateManyWithoutCoversInput No

CoversScalarWhereInput

Name Type Nullable
AND CoversScalarWhereInput | CoversScalarWhereInput[] No
OR CoversScalarWhereInput[] No
NOT CoversScalarWhereInput | CoversScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
url StringFilter | String No
genreId StringFilter | String No

GenreCreateWithoutCoversInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No
books BookCreateNestedManyWithoutGenreInput No

GenreUncheckedCreateWithoutCoversInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No
books BookUncheckedCreateNestedManyWithoutGenreInput No

GenreCreateOrConnectWithoutCoversInput

Name Type Nullable
where GenreWhereUniqueInput No
create GenreCreateWithoutCoversInput | GenreUncheckedCreateWithoutCoversInput No


GenreUpdateWithoutCoversInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No
books BookUpdateManyWithoutGenreNestedInput No

GenreUncheckedUpdateWithoutCoversInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No
books BookUncheckedUpdateManyWithoutGenreNestedInput No

BookCreateWithoutCategoriesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
characters CharacterCreateNestedManyWithoutBooksInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
fans FollowCreateNestedManyWithoutBookInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutCategoriesInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
authors UserUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutCategoriesInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutCategoriesInput | BookUncheckedCreateWithoutCategoriesInput No


BookUpdateWithWhereUniqueWithoutCategoriesInput

Name Type Nullable
where BookWhereUniqueInput No
data BookUpdateWithoutCategoriesInput | BookUncheckedUpdateWithoutCategoriesInput No

BookUpdateManyWithWhereWithoutCategoriesInput

Name Type Nullable
where BookScalarWhereInput No
data BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput No

GenreCreateWithoutBooksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No
covers CoversCreateNestedManyWithoutGenreInput No

GenreUncheckedCreateWithoutBooksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No
covers CoversUncheckedCreateNestedManyWithoutGenreInput No

GenreCreateOrConnectWithoutBooksInput

Name Type Nullable
where GenreWhereUniqueInput No
create GenreCreateWithoutBooksInput | GenreUncheckedCreateWithoutBooksInput No

BookCategoryCreateWithoutBooksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No

BookCategoryUncheckedCreateWithoutBooksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No

BookCategoryCreateOrConnectWithoutBooksInput

Name Type Nullable
where BookCategoryWhereUniqueInput No
create BookCategoryCreateWithoutBooksInput | BookCategoryUncheckedCreateWithoutBooksInput No

UserCreateWithoutBooksInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No

UserUncheckedCreateWithoutBooksInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No

UserCreateOrConnectWithoutBooksInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput No

ChapterCreateWithoutBookInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
characters CharacterCreateNestedManyWithoutChaptersInput No
gallery GalleryCreateNestedOneWithoutChapter_galleryInput No

ChapterUncheckedCreateWithoutBookInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
galleryId String | Null Yes
characters CharacterUncheckedCreateNestedManyWithoutChaptersInput No

ChapterCreateOrConnectWithoutBookInput

Name Type Nullable
where ChapterWhereUniqueInput No
create ChapterCreateWithoutBookInput | ChapterUncheckedCreateWithoutBookInput No

ChapterCreateManyBookInputEnvelope

Name Type Nullable
data ChapterCreateManyBookInput | ChapterCreateManyBookInput[] No
skipDuplicates Boolean No

CharacterCreateWithoutBooksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
likes LikeCreateNestedManyWithoutCharacterInput No
fans FollowCreateNestedManyWithoutCharacterInput No
chapters ChapterCreateNestedManyWithoutCharactersInput No
gallery GalleryCreateNestedOneWithoutCharacter_galleryInput No

CharacterUncheckedCreateWithoutBooksInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String | Null Yes
likes LikeUncheckedCreateNestedManyWithoutCharacterInput No
fans FollowUncheckedCreateNestedManyWithoutCharacterInput No
chapters ChapterUncheckedCreateNestedManyWithoutCharactersInput No

CharacterCreateOrConnectWithoutBooksInput

Name Type Nullable
where CharacterWhereUniqueInput No
create CharacterCreateWithoutBooksInput | CharacterUncheckedCreateWithoutBooksInput No

GalleryCreateWithoutBook_galleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutBook_galleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutBook_galleryInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutBook_galleryInput | GalleryUncheckedCreateWithoutBook_galleryInput No

FollowCreateWithoutBookInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
follower UserCreateNestedOneWithoutFollowerInput No
following UserCreateNestedOneWithoutFollowingInput No
character CharacterCreateNestedOneWithoutFansInput No

FollowUncheckedCreateWithoutBookInput

Name Type Nullable
id String No
followerId String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes

FollowCreateOrConnectWithoutBookInput

Name Type Nullable
where FollowWhereUniqueInput No
create FollowCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput No

FollowCreateManyBookInputEnvelope

Name Type Nullable
data FollowCreateManyBookInput | FollowCreateManyBookInput[] No
skipDuplicates Boolean No

LikeCreateWithoutBookInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
author UserCreateNestedOneWithoutLikesInput No
comment CommentCreateNestedOneWithoutLikesInput No
gallery GalleryCreateNestedOneWithoutLikesInput No
image ImageCreateNestedOneWithoutLikesInput No
post PostCreateNestedOneWithoutLikesInput No
character CharacterCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutBookInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes

LikeCreateOrConnectWithoutBookInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput No

LikeCreateManyBookInputEnvelope

Name Type Nullable
data LikeCreateManyBookInput | LikeCreateManyBookInput[] No
skipDuplicates Boolean No


GenreUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No
covers CoversUpdateManyWithoutGenreNestedInput No

GenreUncheckedUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
fiction Boolean | BoolFieldUpdateOperationsInput No
covers CoversUncheckedUpdateManyWithoutGenreNestedInput No


BookCategoryUpdateWithWhereUniqueWithoutBooksInput

Name Type Nullable
where BookCategoryWhereUniqueInput No
data BookCategoryUpdateWithoutBooksInput | BookCategoryUncheckedUpdateWithoutBooksInput No

BookCategoryUpdateManyWithWhereWithoutBooksInput

Name Type Nullable
where BookCategoryScalarWhereInput No
data BookCategoryUpdateManyMutationInput | BookCategoryUncheckedUpdateManyWithoutCategoriesInput No

BookCategoryScalarWhereInput

Name Type Nullable
AND BookCategoryScalarWhereInput | BookCategoryScalarWhereInput[] No
OR BookCategoryScalarWhereInput[] No
NOT BookCategoryScalarWhereInput | BookCategoryScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
title StringFilter | String No
description StringFilter | String No

UserUpsertWithWhereUniqueWithoutBooksInput

Name Type Nullable
where UserWhereUniqueInput No
update UserUpdateWithoutBooksInput | UserUncheckedUpdateWithoutBooksInput No
create UserCreateWithoutBooksInput | UserUncheckedCreateWithoutBooksInput No

UserUpdateWithWhereUniqueWithoutBooksInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutBooksInput | UserUncheckedUpdateWithoutBooksInput No

UserUpdateManyWithWhereWithoutBooksInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutAuthorsInput No


ChapterUpdateWithWhereUniqueWithoutBookInput

Name Type Nullable
where ChapterWhereUniqueInput No
data ChapterUpdateWithoutBookInput | ChapterUncheckedUpdateWithoutBookInput No

ChapterUpdateManyWithWhereWithoutBookInput

Name Type Nullable
where ChapterScalarWhereInput No
data ChapterUpdateManyMutationInput | ChapterUncheckedUpdateManyWithoutChaptersInput No

ChapterScalarWhereInput

Name Type Nullable
AND ChapterScalarWhereInput | ChapterScalarWhereInput[] No
OR ChapterScalarWhereInput[] No
NOT ChapterScalarWhereInput | ChapterScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
active BoolFilter | Boolean No
content StringFilter | String No
words IntFilter | Int No
bookId StringFilter | String No
galleryId StringNullableFilter | String | Null Yes


CharacterUpdateWithWhereUniqueWithoutBooksInput

Name Type Nullable
where CharacterWhereUniqueInput No
data CharacterUpdateWithoutBooksInput | CharacterUncheckedUpdateWithoutBooksInput No

CharacterUpdateManyWithWhereWithoutBooksInput

Name Type Nullable
where CharacterScalarWhereInput No
data CharacterUpdateManyMutationInput | CharacterUncheckedUpdateManyWithoutCharactersInput No

CharacterScalarWhereInput

Name Type Nullable
AND CharacterScalarWhereInput | CharacterScalarWhereInput[] No
OR CharacterScalarWhereInput[] No
NOT CharacterScalarWhereInput | CharacterScalarWhereInput[] No
id StringFilter | String No
createdAt DateTimeFilter | DateTime No
updatedAt DateTimeFilter | DateTime No
active BoolFilter | Boolean No
name StringFilter | String No
familyName StringFilter | String No
givenName StringFilter | String No
middleName StringFilter | String No
thumbnail StringFilter | String No
age StringFilter | String No
role StringFilter | String No
description StringFilter | String No
backstory StringFilter | String No
title StringFilter | String No
archetype StringFilter | String No
galleryId StringNullableFilter | String | Null Yes


GalleryUpdateWithoutBook_galleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutBook_galleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No

FollowUpsertWithWhereUniqueWithoutBookInput

Name Type Nullable
where FollowWhereUniqueInput No
update FollowUpdateWithoutBookInput | FollowUncheckedUpdateWithoutBookInput No
create FollowCreateWithoutBookInput | FollowUncheckedCreateWithoutBookInput No

FollowUpdateWithWhereUniqueWithoutBookInput

Name Type Nullable
where FollowWhereUniqueInput No
data FollowUpdateWithoutBookInput | FollowUncheckedUpdateWithoutBookInput No

FollowUpdateManyWithWhereWithoutBookInput

Name Type Nullable
where FollowScalarWhereInput No
data FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFansInput No

LikeUpsertWithWhereUniqueWithoutBookInput

Name Type Nullable
where LikeWhereUniqueInput No
update LikeUpdateWithoutBookInput | LikeUncheckedUpdateWithoutBookInput No
create LikeCreateWithoutBookInput | LikeUncheckedCreateWithoutBookInput No

LikeUpdateWithWhereUniqueWithoutBookInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutBookInput | LikeUncheckedUpdateWithoutBookInput No

LikeUpdateManyWithWhereWithoutBookInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput No

LikeCreateWithoutCharacterInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
author UserCreateNestedOneWithoutLikesInput No
comment CommentCreateNestedOneWithoutLikesInput No
gallery GalleryCreateNestedOneWithoutLikesInput No
image ImageCreateNestedOneWithoutLikesInput No
post PostCreateNestedOneWithoutLikesInput No
book BookCreateNestedOneWithoutLikesInput No

LikeUncheckedCreateWithoutCharacterInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
bookId String | Null Yes

LikeCreateOrConnectWithoutCharacterInput

Name Type Nullable
where LikeWhereUniqueInput No
create LikeCreateWithoutCharacterInput | LikeUncheckedCreateWithoutCharacterInput No

LikeCreateManyCharacterInputEnvelope

Name Type Nullable
data LikeCreateManyCharacterInput | LikeCreateManyCharacterInput[] No
skipDuplicates Boolean No

FollowCreateWithoutCharacterInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
follower UserCreateNestedOneWithoutFollowerInput No
following UserCreateNestedOneWithoutFollowingInput No
book BookCreateNestedOneWithoutFansInput No

FollowUncheckedCreateWithoutCharacterInput

Name Type Nullable
id String No
followerId String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
bookId String | Null Yes

FollowCreateOrConnectWithoutCharacterInput

Name Type Nullable
where FollowWhereUniqueInput No
create FollowCreateWithoutCharacterInput | FollowUncheckedCreateWithoutCharacterInput No

FollowCreateManyCharacterInputEnvelope

Name Type Nullable
data FollowCreateManyCharacterInput | FollowCreateManyCharacterInput[] No
skipDuplicates Boolean No

BookCreateWithoutCharactersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
categories BookCategoryCreateNestedManyWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
chapters ChapterCreateNestedManyWithoutBookInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
fans FollowCreateNestedManyWithoutBookInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutCharactersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
authors UserUncheckedCreateNestedManyWithoutBooksInput No
chapters ChapterUncheckedCreateNestedManyWithoutBookInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutCharactersInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutCharactersInput | BookUncheckedCreateWithoutCharactersInput No

ChapterCreateWithoutCharactersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
book BookCreateNestedOneWithoutChaptersInput No
gallery GalleryCreateNestedOneWithoutChapter_galleryInput No

ChapterUncheckedCreateWithoutCharactersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
bookId String No
galleryId String | Null Yes

ChapterCreateOrConnectWithoutCharactersInput

Name Type Nullable
where ChapterWhereUniqueInput No
create ChapterCreateWithoutCharactersInput | ChapterUncheckedCreateWithoutCharactersInput No

GalleryCreateWithoutCharacter_galleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutCharacter_galleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutCharacter_galleryInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutCharacter_galleryInput | GalleryUncheckedCreateWithoutCharacter_galleryInput No


LikeUpdateWithWhereUniqueWithoutCharacterInput

Name Type Nullable
where LikeWhereUniqueInput No
data LikeUpdateWithoutCharacterInput | LikeUncheckedUpdateWithoutCharacterInput No

LikeUpdateManyWithWhereWithoutCharacterInput

Name Type Nullable
where LikeScalarWhereInput No
data LikeUpdateManyMutationInput | LikeUncheckedUpdateManyWithoutLikesInput No


FollowUpdateWithWhereUniqueWithoutCharacterInput

Name Type Nullable
where FollowWhereUniqueInput No
data FollowUpdateWithoutCharacterInput | FollowUncheckedUpdateWithoutCharacterInput No

FollowUpdateManyWithWhereWithoutCharacterInput

Name Type Nullable
where FollowScalarWhereInput No
data FollowUpdateManyMutationInput | FollowUncheckedUpdateManyWithoutFansInput No


BookUpdateWithWhereUniqueWithoutCharactersInput

Name Type Nullable
where BookWhereUniqueInput No
data BookUpdateWithoutCharactersInput | BookUncheckedUpdateWithoutCharactersInput No

BookUpdateManyWithWhereWithoutCharactersInput

Name Type Nullable
where BookScalarWhereInput No
data BookUpdateManyMutationInput | BookUncheckedUpdateManyWithoutBooksInput No


ChapterUpdateWithWhereUniqueWithoutCharactersInput

Name Type Nullable
where ChapterWhereUniqueInput No
data ChapterUpdateWithoutCharactersInput | ChapterUncheckedUpdateWithoutCharactersInput No

ChapterUpdateManyWithWhereWithoutCharactersInput

Name Type Nullable
where ChapterScalarWhereInput No
data ChapterUpdateManyMutationInput | ChapterUncheckedUpdateManyWithoutChaptersInput No


GalleryUpdateWithoutCharacter_galleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutCharacter_galleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No

CharacterCreateWithoutChaptersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
likes LikeCreateNestedManyWithoutCharacterInput No
fans FollowCreateNestedManyWithoutCharacterInput No
books BookCreateNestedManyWithoutCharactersInput No
gallery GalleryCreateNestedOneWithoutCharacter_galleryInput No

CharacterUncheckedCreateWithoutChaptersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String | Null Yes
likes LikeUncheckedCreateNestedManyWithoutCharacterInput No
fans FollowUncheckedCreateNestedManyWithoutCharacterInput No
books BookUncheckedCreateNestedManyWithoutCharactersInput No

CharacterCreateOrConnectWithoutChaptersInput

Name Type Nullable
where CharacterWhereUniqueInput No
create CharacterCreateWithoutChaptersInput | CharacterUncheckedCreateWithoutChaptersInput No

BookCreateWithoutChaptersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
genre GenreCreateNestedOneWithoutBooksInput No
categories BookCategoryCreateNestedManyWithoutBooksInput No
authors UserCreateNestedManyWithoutBooksInput No
characters CharacterCreateNestedManyWithoutBooksInput No
gallery GalleryCreateNestedOneWithoutBook_galleryInput No
fans FollowCreateNestedManyWithoutBookInput No
likes LikeCreateNestedManyWithoutBookInput No

BookUncheckedCreateWithoutChaptersInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
genreId String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes
categories BookCategoryUncheckedCreateNestedManyWithoutBooksInput No
authors UserUncheckedCreateNestedManyWithoutBooksInput No
characters CharacterUncheckedCreateNestedManyWithoutBooksInput No
fans FollowUncheckedCreateNestedManyWithoutBookInput No
likes LikeUncheckedCreateNestedManyWithoutBookInput No

BookCreateOrConnectWithoutChaptersInput

Name Type Nullable
where BookWhereUniqueInput No
create BookCreateWithoutChaptersInput | BookUncheckedCreateWithoutChaptersInput No

GalleryCreateWithoutChapter_galleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutChapter_galleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedGalleryInput No
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutChapter_galleryInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutChapter_galleryInput | GalleryUncheckedCreateWithoutChapter_galleryInput No


CharacterUpdateWithWhereUniqueWithoutChaptersInput

Name Type Nullable
where CharacterWhereUniqueInput No
data CharacterUpdateWithoutChaptersInput | CharacterUncheckedUpdateWithoutChaptersInput No

CharacterUpdateManyWithWhereWithoutChaptersInput

Name Type Nullable
where CharacterScalarWhereInput No
data CharacterUpdateManyMutationInput | CharacterUncheckedUpdateManyWithoutCharactersInput No


BookUpdateWithoutChaptersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutChaptersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No


GalleryUpdateWithoutChapter_galleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutChapter_galleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No

UserCreateWithoutBlockingInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutBlockingInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutBlockingInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutBlockingInput | UserUncheckedCreateWithoutBlockingInput No

GalleryCreateWithoutBlockingInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes
commune CommuneCreateNestedOneWithoutGalleryInput No
author UserCreateNestedOneWithoutGalleriesInput No
images ImageCreateNestedManyWithoutGalleryInput No
likes LikeCreateNestedManyWithoutGalleryInput No
shares ShareCreateNestedManyWithoutGalleryInput No
book_gallery BookCreateNestedOneWithoutGalleryInput No
character_gallery CharacterCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterCreateNestedOneWithoutGalleryInput No

GalleryUncheckedCreateWithoutBlockingInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
authorId String No
shareId String | Null Yes
commune CommuneUncheckedCreateNestedOneWithoutGalleryInput No
images ImageUncheckedCreateNestedManyWithoutGalleryInput No
likes LikeUncheckedCreateNestedManyWithoutGalleryInput No
shares ShareUncheckedCreateNestedManyWithoutGalleryInput No
book_gallery BookUncheckedCreateNestedOneWithoutGalleryInput No
character_gallery CharacterUncheckedCreateNestedOneWithoutGalleryInput No
chapter_gallery ChapterUncheckedCreateNestedOneWithoutGalleryInput No

GalleryCreateOrConnectWithoutBlockingInput

Name Type Nullable
where GalleryWhereUniqueInput No
create GalleryCreateWithoutBlockingInput | GalleryUncheckedCreateWithoutBlockingInput No

CommentThreadCreateWithoutBlockedInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
comments CommentCreateNestedManyWithoutThreadInput No
commune CommuneCreateNestedOneWithoutThreadInput No

CommentThreadUncheckedCreateWithoutBlockedInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No
comments CommentUncheckedCreateNestedManyWithoutThreadInput No
commune CommuneUncheckedCreateNestedOneWithoutThreadInput No

CommentThreadCreateOrConnectWithoutBlockedInput

Name Type Nullable
where CommentThreadWhereUniqueInput No
create CommentThreadCreateWithoutBlockedInput | CommentThreadUncheckedCreateWithoutBlockedInput No

UserCreateWithoutBlockedInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutBlockedInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutBlockedInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutBlockedInput | UserUncheckedCreateWithoutBlockedInput No


UserUpdateWithoutBlockingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutBlockingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No


GalleryUpdateWithoutBlockingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
commune CommuneUpdateOneWithoutGalleryNestedInput No
author UserUpdateOneRequiredWithoutGalleriesNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutBlockingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No


CommentThreadUpdateWithoutBlockedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No
comments CommentUpdateManyWithoutThreadNestedInput No
commune CommuneUpdateOneWithoutThreadNestedInput No

CommentThreadUncheckedUpdateWithoutBlockedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
requiredRole Role | EnumRoleFieldUpdateOperationsInput No
comments CommentUncheckedUpdateManyWithoutThreadNestedInput No
commune CommuneUncheckedUpdateOneWithoutThreadNestedInput No


UserUpdateWithoutBlockedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutBlockedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

UserCreateWithoutAccountsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
sessions SessionCreateNestedManyWithoutUserInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutAccountsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
sessions SessionUncheckedCreateNestedManyWithoutUserInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutAccountsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAccountsInput | UserUncheckedCreateWithoutAccountsInput No


UserUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

UserCreateWithoutSessionsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
accounts AccountCreateNestedManyWithoutUserInput No
blocking BlockCreateNestedManyWithoutBlockedUserInput No
blocked BlockCreateNestedManyWithoutUserInput No
chatMessages ChatMessageCreateNestedManyWithoutAuthorInput No
comments CommentCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneCreateNestedManyWithoutOwnerInput No
communes CommuneUserCreateNestedManyWithoutUserInput No
fanOf FanCreateNestedManyWithoutFanInput No
fans FanCreateNestedManyWithoutFanOfInput No
follower FollowCreateNestedManyWithoutFollowerInput No
following FollowCreateNestedManyWithoutFollowingInput No
galleries GalleryCreateNestedManyWithoutAuthorInput No
images ImageCreateNestedManyWithoutAuthorInput No
likes LikeCreateNestedManyWithoutAuthorInput No
posts PostCreateNestedManyWithoutAuthorInput No
shares ShareCreateNestedManyWithoutAuthorInput No
chats ChatRoomCreateNestedManyWithoutUsersInput No
membership MembershipCreateNestedOneWithoutUserInput No
books BookCreateNestedManyWithoutAuthorsInput No

UserUncheckedCreateWithoutSessionsInput

Name Type Nullable
id String No
name String | Null Yes
email String | Null Yes
emailVerified DateTime | Null Yes
image String | Null Yes
membershipId String | Null Yes
accounts AccountUncheckedCreateNestedManyWithoutUserInput No
blocking BlockUncheckedCreateNestedManyWithoutBlockedUserInput No
blocked BlockUncheckedCreateNestedManyWithoutUserInput No
chatMessages ChatMessageUncheckedCreateNestedManyWithoutAuthorInput No
comments CommentUncheckedCreateNestedManyWithoutAuthorInput No
ownedCommunes CommuneUncheckedCreateNestedManyWithoutOwnerInput No
communes CommuneUserUncheckedCreateNestedManyWithoutUserInput No
fanOf FanUncheckedCreateNestedManyWithoutFanInput No
fans FanUncheckedCreateNestedManyWithoutFanOfInput No
follower FollowUncheckedCreateNestedManyWithoutFollowerInput No
following FollowUncheckedCreateNestedManyWithoutFollowingInput No
galleries GalleryUncheckedCreateNestedManyWithoutAuthorInput No
images ImageUncheckedCreateNestedManyWithoutAuthorInput No
likes LikeUncheckedCreateNestedManyWithoutAuthorInput No
posts PostUncheckedCreateNestedManyWithoutAuthorInput No
shares ShareUncheckedCreateNestedManyWithoutAuthorInput No
chats ChatRoomUncheckedCreateNestedManyWithoutUsersInput No
books BookUncheckedCreateNestedManyWithoutAuthorsInput No

UserCreateOrConnectWithoutSessionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSessionsInput | UserUncheckedCreateWithoutSessionsInput No


UserUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

AccountCreateManyUserInput

Name Type Nullable
id String No
type String No
provider String No
providerAccountId String No
refresh_token String | Null Yes
access_token String | Null Yes
expires_at Int | Null Yes
token_type String | Null Yes
scope String | Null Yes
id_token String | Null Yes
session_state String | Null Yes
oauth_token_secret String | Null Yes
oauth_token String | Null Yes

BlockCreateManyBlockedUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
galleryId String | Null Yes
threadId String | Null Yes
userId String No

BlockCreateManyUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
galleryId String | Null Yes
threadId String | Null Yes

ChatMessageCreateManyAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
chatRoomId String No
content String No

CommentCreateManyAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
threadId String No
content String No
visible Boolean No

CommuneCreateManyOwnerInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
galleryId String | Null Yes
threadId String | Null Yes

CommuneUserCreateManyUserInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
communeId String No
role Role No

FanCreateManyFanInput

Name Type Nullable
id String No
fanOfId String No
createdAt DateTime No
updatedAt DateTime No

FanCreateManyFanOfInput

Name Type Nullable
id String No
fanId String No
createdAt DateTime No
updatedAt DateTime No

FollowCreateManyFollowerInput

Name Type Nullable
id String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes
bookId String | Null Yes

FollowCreateManyFollowingInput

Name Type Nullable
id String No
followerId String No
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes
bookId String | Null Yes

GalleryCreateManyAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
description String | Null Yes
shareId String | Null Yes

ImageCreateManyAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
galleryId String | Null Yes
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes

LikeCreateManyAuthorInput

Name Type Nullable
id String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

PostCreateManyAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
commentId String | Null Yes

SessionCreateManyUserInput

Name Type Nullable
id String No
sessionToken String No
expires DateTime No

ShareCreateManyAuthorInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
postId String | Null Yes
galleryId String | Null Yes
imageId String | Null Yes

AccountUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes

AccountUncheckedUpdateManyWithoutAccountsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
type String | StringFieldUpdateOperationsInput No
provider String | StringFieldUpdateOperationsInput No
providerAccountId String | StringFieldUpdateOperationsInput No
refresh_token String | NullableStringFieldUpdateOperationsInput | Null Yes
access_token String | NullableStringFieldUpdateOperationsInput | Null Yes
expires_at Int | NullableIntFieldUpdateOperationsInput | Null Yes
token_type String | NullableStringFieldUpdateOperationsInput | Null Yes
scope String | NullableStringFieldUpdateOperationsInput | Null Yes
id_token String | NullableStringFieldUpdateOperationsInput | Null Yes
session_state String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token_secret String | NullableStringFieldUpdateOperationsInput | Null Yes
oauth_token String | NullableStringFieldUpdateOperationsInput | Null Yes

BlockUpdateWithoutBlockedUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedGallery GalleryUpdateOneWithoutBlockingNestedInput No
blockedThread CommentThreadUpdateOneWithoutBlockedNestedInput No
user UserUpdateOneRequiredWithoutBlockedNestedInput No

BlockUncheckedUpdateWithoutBlockedUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No

BlockUncheckedUpdateManyWithoutBlockingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No

BlockUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedUser UserUpdateOneRequiredWithoutBlockingNestedInput No
blockedGallery GalleryUpdateOneWithoutBlockingNestedInput No
blockedThread CommentThreadUpdateOneWithoutBlockedNestedInput No

BlockUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes

BlockUncheckedUpdateManyWithoutBlockedInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes

ChatMessageUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
chatRoom ChatRoomUpdateOneRequiredWithoutMessagesNestedInput No

ChatMessageUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
chatRoomId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No

ChatMessageUncheckedUpdateManyWithoutChatMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
chatRoomId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No

CommentUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
thread CommentThreadUpdateOneRequiredWithoutCommentsNestedInput No
likes LikeUpdateManyWithoutCommentNestedInput No

CommentUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
threadId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
likes LikeUncheckedUpdateManyWithoutCommentNestedInput No

CommentUncheckedUpdateManyWithoutCommentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
threadId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No


CommuneUncheckedUpdateWithoutOwnerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
users CommuneUserUncheckedUpdateManyWithoutCommuneNestedInput No

CommuneUncheckedUpdateManyWithoutOwnedCommunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | EnumEntityFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes

CommuneUserUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No
commune CommuneUpdateOneRequiredWithoutUsersNestedInput No

CommuneUserUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
communeId String | StringFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No

CommuneUserUncheckedUpdateManyWithoutCommunesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
communeId String | StringFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No

FanUpdateWithoutFanInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fanOf UserUpdateOneRequiredWithoutFansNestedInput No

FanUncheckedUpdateWithoutFanInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
fanOfId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FanUncheckedUpdateManyWithoutFanOfInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
fanOfId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FanUpdateWithoutFanOfInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
fan UserUpdateOneRequiredWithoutFanOfNestedInput No

FanUncheckedUpdateWithoutFanOfInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
fanId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FanUncheckedUpdateManyWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
fanId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No

FollowUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
following UserUpdateOneWithoutFollowingNestedInput No
character CharacterUpdateOneWithoutFansNestedInput No
book BookUpdateOneWithoutFansNestedInput No

FollowUncheckedUpdateWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followingId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowUncheckedUpdateManyWithoutFollowerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followingId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
follower UserUpdateOneRequiredWithoutFollowerNestedInput No
character CharacterUpdateOneWithoutFansNestedInput No
book BookUpdateOneWithoutFansNestedInput No

FollowUncheckedUpdateWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowUncheckedUpdateManyWithoutFollowingInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

GalleryUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUpdateOneWithoutGalleryNestedInput No
images ImageUpdateManyWithoutGalleryNestedInput No
likes LikeUpdateManyWithoutGalleryNestedInput No
shares ShareUpdateManyWithoutGalleryNestedInput No
book_gallery BookUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
blocking BlockUncheckedUpdateManyWithoutBlockedGalleryNestedInput No
commune CommuneUncheckedUpdateOneWithoutGalleryNestedInput No
images ImageUncheckedUpdateManyWithoutGalleryNestedInput No
likes LikeUncheckedUpdateManyWithoutGalleryNestedInput No
shares ShareUncheckedUpdateManyWithoutGalleryNestedInput No
book_gallery BookUncheckedUpdateOneWithoutGalleryNestedInput No
character_gallery CharacterUncheckedUpdateOneWithoutGalleryNestedInput No
chapter_gallery ChapterUncheckedUpdateOneWithoutGalleryNestedInput No

GalleryUncheckedUpdateManyWithoutGalleriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes


ImageUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutImageNestedInput No
shares ShareUncheckedUpdateManyWithoutImageNestedInput No

ImageUncheckedUpdateManyWithoutImagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes


LikeUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

LikeUncheckedUpdateManyWithoutLikesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes



PostUncheckedUpdateManyWithoutPostsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
content String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes

SessionUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

SessionUncheckedUpdateManyWithoutSessionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
sessionToken String | StringFieldUpdateOperationsInput No
expires DateTime | DateTimeFieldUpdateOperationsInput No

ShareUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
gallery GalleryUpdateOneWithoutSharesNestedInput No
image ImageUpdateOneWithoutSharesNestedInput No
post PostUpdateOneWithoutSharesNestedInput No

ShareUncheckedUpdateWithoutAuthorInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes

ShareUncheckedUpdateManyWithoutSharesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes

ChatRoomUpdateWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No
messages ChatMessageUpdateManyWithoutChatRoomNestedInput No

ChatRoomUncheckedUpdateWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No
messages ChatMessageUncheckedUpdateManyWithoutChatRoomNestedInput No

ChatRoomUncheckedUpdateManyWithoutChatsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
party String | StringFieldUpdateOperationsInput No

BookUpdateWithoutAuthorsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutAuthorsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateManyWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

ImageCreateManyPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
galleryId String | Null Yes
shareId String | Null Yes
url String No
height Int | Null Yes
width Int | Null Yes

LikeCreateManyPostInput

Name Type Nullable
id String No
authorId String No
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

PostCreateManyCommentInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String | Null Yes
shareId String | Null Yes
authorId String No

ShareCreateManyPostInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
galleryId String | Null Yes
imageId String | Null Yes


ImageUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutImageNestedInput No
shares ShareUncheckedUpdateManyWithoutImageNestedInput No


LikeUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes



PostUncheckedUpdateManyWithoutPost_commentsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
content String | NullableStringFieldUpdateOperationsInput | Null Yes
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No

ShareUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutSharesNestedInput No
gallery GalleryUpdateOneWithoutSharesNestedInput No
image ImageUpdateOneWithoutSharesNestedInput No

ShareUncheckedUpdateWithoutPostInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes

BlockCreateManyBlockedGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
threadId String | Null Yes
userId String No

ImageCreateManyGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String | Null Yes
authorId String No
shareId String | Null Yes
url String No
postId String | Null Yes
height Int | Null Yes
width Int | Null Yes

LikeCreateManyGalleryInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

ShareCreateManyGalleryInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String | Null Yes
imageId String | Null Yes


BlockUncheckedUpdateWithoutBlockedGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedId String | StringFieldUpdateOperationsInput No
threadId String | NullableStringFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No


ImageUncheckedUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
title String | NullableStringFieldUpdateOperationsInput | Null Yes
authorId String | StringFieldUpdateOperationsInput No
shareId String | NullableStringFieldUpdateOperationsInput | Null Yes
url String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
height Int | NullableIntFieldUpdateOperationsInput | Null Yes
width Int | NullableIntFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutImageNestedInput No
shares ShareUncheckedUpdateManyWithoutImageNestedInput No


LikeUncheckedUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

ShareUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutSharesNestedInput No
image ImageUpdateOneWithoutSharesNestedInput No
post PostUpdateOneWithoutSharesNestedInput No

ShareUncheckedUpdateWithoutGalleryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes

LikeCreateManyImageInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes

ShareCreateManyImageInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String | Null Yes
galleryId String | Null Yes


LikeUncheckedUpdateWithoutImageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

ShareUpdateWithoutImageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutSharesNestedInput No
gallery GalleryUpdateOneWithoutSharesNestedInput No
post PostUpdateOneWithoutSharesNestedInput No

ShareUncheckedUpdateWithoutImageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

ChatMessageCreateManyChatRoomInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
authorId String No
content String No

ChatMessageUpdateWithoutChatRoomInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutChatMessagesNestedInput No

ChatMessageUncheckedUpdateWithoutChatRoomInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No

ChatMessageUncheckedUpdateManyWithoutMessagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
seen Boolean | BoolFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No

UserUpdateWithoutChatsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No
books BookUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateWithoutChatsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
books BookUncheckedUpdateManyWithoutAuthorsNestedInput No

UserUncheckedUpdateManyWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes

BlockCreateManyBlockedThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity | Null Yes
entityId String | Null Yes
blockedId String No
galleryId String | Null Yes
userId String No

CommentCreateManyThreadInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
authorId String No
content String No
visible Boolean No

BlockUpdateWithoutBlockedThreadInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedUser UserUpdateOneRequiredWithoutBlockingNestedInput No
blockedGallery GalleryUpdateOneWithoutBlockingNestedInput No
user UserUpdateOneRequiredWithoutBlockedNestedInput No

BlockUncheckedUpdateWithoutBlockedThreadInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
entity Entity | NullableEnumEntityFieldUpdateOperationsInput | Null Yes
entityId String | NullableStringFieldUpdateOperationsInput | Null Yes
blockedId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
userId String | StringFieldUpdateOperationsInput No

CommentUpdateWithoutThreadInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
author UserUpdateOneRequiredWithoutCommentsNestedInput No
likes LikeUpdateManyWithoutCommentNestedInput No

CommentUncheckedUpdateWithoutThreadInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
threadType Entity | EnumEntityFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
visible Boolean | BoolFieldUpdateOperationsInput No
likes LikeUncheckedUpdateManyWithoutCommentNestedInput No

LikeCreateManyCommentInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
characterId String | Null Yes
bookId String | Null Yes


LikeUncheckedUpdateWithoutCommentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

CommuneUserCreateManyCommuneInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
userId String No
role Role No

CommuneUserUpdateWithoutCommuneInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No
user UserUpdateOneRequiredWithoutCommunesNestedInput No

CommuneUserUncheckedUpdateWithoutCommuneInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No

CommuneUserUncheckedUpdateManyWithoutUsersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
userId String | StringFieldUpdateOperationsInput No
role Role | EnumRoleFieldUpdateOperationsInput No

BookCreateManyGenreInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus | Null Yes
prospect Boolean No
title String No
cover String No
hook String | Null Yes
synopsis String | Null Yes
back String | Null Yes
words Int No
galleryId String | Null Yes

CoversCreateManyGenreInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No

BookUpdateWithoutGenreInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutGenreInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No

CoversUpdateWithoutGenreInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No

CoversUncheckedUpdateWithoutGenreInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No

CoversUncheckedUpdateManyWithoutCoversInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No

BookUpdateWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
characters CharacterUpdateManyWithoutBooksNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
characters CharacterUncheckedUpdateManyWithoutBooksNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No

ChapterCreateManyBookInput

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
galleryId String | Null Yes

FollowCreateManyBookInput

Name Type Nullable
id String No
followerId String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
characterId String | Null Yes

LikeCreateManyBookInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
characterId String | Null Yes

BookCategoryUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No

BookCategoryUncheckedUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No

BookCategoryUncheckedUpdateManyWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No

UserUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUpdateManyWithoutUserNestedInput No
blocking BlockUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUpdateManyWithoutAuthorNestedInput No
comments CommentUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUpdateManyWithoutUserNestedInput No
fanOf FanUpdateManyWithoutFanNestedInput No
fans FanUpdateManyWithoutFanOfNestedInput No
follower FollowUpdateManyWithoutFollowerNestedInput No
following FollowUpdateManyWithoutFollowingNestedInput No
galleries GalleryUpdateManyWithoutAuthorNestedInput No
images ImageUpdateManyWithoutAuthorNestedInput No
likes LikeUpdateManyWithoutAuthorNestedInput No
posts PostUpdateManyWithoutAuthorNestedInput No
sessions SessionUpdateManyWithoutUserNestedInput No
shares ShareUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUpdateManyWithoutUsersNestedInput No
membership MembershipUpdateOneWithoutUserNestedInput No

UserUncheckedUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes
accounts AccountUncheckedUpdateManyWithoutUserNestedInput No
blocking BlockUncheckedUpdateManyWithoutBlockedUserNestedInput No
blocked BlockUncheckedUpdateManyWithoutUserNestedInput No
chatMessages ChatMessageUncheckedUpdateManyWithoutAuthorNestedInput No
comments CommentUncheckedUpdateManyWithoutAuthorNestedInput No
ownedCommunes CommuneUncheckedUpdateManyWithoutOwnerNestedInput No
communes CommuneUserUncheckedUpdateManyWithoutUserNestedInput No
fanOf FanUncheckedUpdateManyWithoutFanNestedInput No
fans FanUncheckedUpdateManyWithoutFanOfNestedInput No
follower FollowUncheckedUpdateManyWithoutFollowerNestedInput No
following FollowUncheckedUpdateManyWithoutFollowingNestedInput No
galleries GalleryUncheckedUpdateManyWithoutAuthorNestedInput No
images ImageUncheckedUpdateManyWithoutAuthorNestedInput No
likes LikeUncheckedUpdateManyWithoutAuthorNestedInput No
posts PostUncheckedUpdateManyWithoutAuthorNestedInput No
sessions SessionUncheckedUpdateManyWithoutUserNestedInput No
shares ShareUncheckedUpdateManyWithoutAuthorNestedInput No
chats ChatRoomUncheckedUpdateManyWithoutUsersNestedInput No

UserUncheckedUpdateManyWithoutAuthorsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
emailVerified DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
membershipId String | NullableStringFieldUpdateOperationsInput | Null Yes

ChapterUpdateWithoutBookInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
characters CharacterUpdateManyWithoutChaptersNestedInput No
gallery GalleryUpdateOneWithoutChapter_galleryNestedInput No

ChapterUncheckedUpdateWithoutBookInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
characters CharacterUncheckedUpdateManyWithoutChaptersNestedInput No

ChapterUncheckedUpdateManyWithoutChaptersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

CharacterUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
likes LikeUpdateManyWithoutCharacterNestedInput No
fans FollowUpdateManyWithoutCharacterNestedInput No
chapters ChapterUpdateManyWithoutCharactersNestedInput No
gallery GalleryUpdateOneWithoutCharacter_galleryNestedInput No

CharacterUncheckedUpdateWithoutBooksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutCharacterNestedInput No
fans FollowUncheckedUpdateManyWithoutCharacterNestedInput No
chapters ChapterUncheckedUpdateManyWithoutCharactersNestedInput No

CharacterUncheckedUpdateManyWithoutCharactersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowUpdateWithoutBookInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
follower UserUpdateOneRequiredWithoutFollowerNestedInput No
following UserUpdateOneWithoutFollowingNestedInput No
character CharacterUpdateOneWithoutFansNestedInput No

FollowUncheckedUpdateWithoutBookInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowUncheckedUpdateManyWithoutFansInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes


LikeUncheckedUpdateWithoutBookInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
characterId String | NullableStringFieldUpdateOperationsInput | Null Yes

LikeCreateManyCharacterInput

Name Type Nullable
id String No
authorId String No
postId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
galleryId String | Null Yes
imageId String | Null Yes
commentId String | Null Yes
bookId String | Null Yes

FollowCreateManyCharacterInput

Name Type Nullable
id String No
followerId String No
followingId String | Null Yes
createdAt DateTime No
updatedAt DateTime No
bookId String | Null Yes


LikeUncheckedUpdateWithoutCharacterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
authorId String | StringFieldUpdateOperationsInput No
postId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
commentId String | NullableStringFieldUpdateOperationsInput | Null Yes
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

FollowUpdateWithoutCharacterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
follower UserUpdateOneRequiredWithoutFollowerNestedInput No
following UserUpdateOneWithoutFollowingNestedInput No
book BookUpdateOneWithoutFansNestedInput No

FollowUncheckedUpdateWithoutCharacterInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
followerId String | StringFieldUpdateOperationsInput No
followingId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
bookId String | NullableStringFieldUpdateOperationsInput | Null Yes

BookUpdateWithoutCharactersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
genre GenreUpdateOneRequiredWithoutBooksNestedInput No
categories BookCategoryUpdateManyWithoutBooksNestedInput No
authors UserUpdateManyWithoutBooksNestedInput No
chapters ChapterUpdateManyWithoutBookNestedInput No
gallery GalleryUpdateOneWithoutBook_galleryNestedInput No
fans FollowUpdateManyWithoutBookNestedInput No
likes LikeUpdateManyWithoutBookNestedInput No

BookUncheckedUpdateWithoutCharactersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
status BookStatus | NullableEnumBookStatusFieldUpdateOperationsInput | Null Yes
prospect Boolean | BoolFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
cover String | StringFieldUpdateOperationsInput No
genreId String | StringFieldUpdateOperationsInput No
hook String | NullableStringFieldUpdateOperationsInput | Null Yes
synopsis String | NullableStringFieldUpdateOperationsInput | Null Yes
back String | NullableStringFieldUpdateOperationsInput | Null Yes
words Int | IntFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
categories BookCategoryUncheckedUpdateManyWithoutBooksNestedInput No
authors UserUncheckedUpdateManyWithoutBooksNestedInput No
chapters ChapterUncheckedUpdateManyWithoutBookNestedInput No
fans FollowUncheckedUpdateManyWithoutBookNestedInput No
likes LikeUncheckedUpdateManyWithoutBookNestedInput No

ChapterUpdateWithoutCharactersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
book BookUpdateOneRequiredWithoutChaptersNestedInput No
gallery GalleryUpdateOneWithoutChapter_galleryNestedInput No

ChapterUncheckedUpdateWithoutCharactersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
words Int | IntFieldUpdateOperationsInput No
bookId String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes

CharacterUpdateWithoutChaptersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
likes LikeUpdateManyWithoutCharacterNestedInput No
fans FollowUpdateManyWithoutCharacterNestedInput No
books BookUpdateManyWithoutCharactersNestedInput No
gallery GalleryUpdateOneWithoutCharacter_galleryNestedInput No

CharacterUncheckedUpdateWithoutChaptersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
updatedAt DateTime | DateTimeFieldUpdateOperationsInput No
active Boolean | BoolFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
familyName String | StringFieldUpdateOperationsInput No
givenName String | StringFieldUpdateOperationsInput No
middleName String | StringFieldUpdateOperationsInput No
thumbnail String | StringFieldUpdateOperationsInput No
age String | StringFieldUpdateOperationsInput No
role String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
backstory String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
archetype String | StringFieldUpdateOperationsInput No
galleryId String | NullableStringFieldUpdateOperationsInput | Null Yes
likes LikeUncheckedUpdateManyWithoutCharacterNestedInput No
fans FollowUncheckedUpdateManyWithoutCharacterNestedInput No
books BookUncheckedUpdateManyWithoutCharactersNestedInput No

Output Types

User

Name Type Nullable
id String Yes
name String No
email String No
emailVerified DateTime No
image String No
membershipId String No
accounts Account[] No
blocking Block[] No
blocked Block[] No
chatMessages ChatMessage[] No
comments Comment[] No
ownedCommunes Commune[] No
communes CommuneUser[] No
fanOf Fan[] No
fans Fan[] No
follower Follow[] No
following Follow[] No
galleries Gallery[] No
images Image[] No
likes Like[] No
posts Post[] No
sessions Session[] No
shares Share[] No
chats ChatRoom[] No
membership Membership No
books Book[] No
_count UserCountOutputType Yes

Post

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
content String No
shareId String No
commentId String No
authorId String Yes
images Image[] No
likes Like[] No
author User Yes
news News No
comment Post No
post_comments Post[] No
shares Share[] No
_count PostCountOutputType Yes

News

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
title String Yes
banner String No
startDate DateTime No
endDate DateTime No
postId String Yes
audience Audience Yes
views Int Yes
priority Int Yes
post Post Yes

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
title String No
description String No
authorId String Yes
shareId String No
blocking Block[] No
commune Commune No
author User Yes
images Image[] No
likes Like[] No
shares Share[] No
book_gallery Book No
character_gallery Character No
chapter_gallery Chapter No
_count GalleryCountOutputType Yes

Image

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
title String No
authorId String Yes
galleryId String No
shareId String No
url String Yes
postId String No
height Int No
width Int No
author User Yes
gallery Gallery No
post Post No
likes Like[] No
shares Share[] No
_count ImageCountOutputType Yes

Like

Name Type Nullable
id String Yes
authorId String Yes
postId String No
createdAt DateTime Yes
updatedAt DateTime Yes
galleryId String No
imageId String No
commentId String No
characterId String No
bookId String No
author User Yes
comment Comment No
gallery Gallery No
image Image No
post Post No
character Character No
book Book No

Share

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
authorId String Yes
postId String No
galleryId String No
imageId String No
author User Yes
gallery Gallery No
image Image No
post Post No

Follow

Name Type Nullable
id String Yes
followerId String Yes
followingId String No
createdAt DateTime Yes
updatedAt DateTime Yes
characterId String No
bookId String No
follower User Yes
following User No
character Character No
book Book No

Fan

Name Type Nullable
id String Yes
fanId String Yes
fanOfId String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
fan User Yes
fanOf User Yes

ChatRoom

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
party String Yes
messages ChatMessage[] No
users User[] No
_count ChatRoomCountOutputType Yes

ChatMessage

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
seen Boolean Yes
chatRoomId String Yes
authorId String Yes
content String Yes
author User Yes
chatRoom ChatRoom Yes

CommentThread

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
entity Entity Yes
requiredRole Role Yes
blocked Block[] No
comments Comment[] No
commune Commune No
_count CommentThreadCountOutputType Yes

Comment

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
threadType Entity Yes
threadId String Yes
authorId String Yes
content String Yes
visible Boolean Yes
author User Yes
thread CommentThread Yes
likes Like[] No
_count CommentCountOutputType Yes

Commune

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
ownerId String Yes
entity Entity Yes
galleryId String No
threadId String No
gallery Gallery No
owner User Yes
thread CommentThread No
users CommuneUser[] No
_count CommuneCountOutputType Yes

CommuneUser

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
communeId String Yes
userId String Yes
role Role Yes
commune Commune Yes
user User Yes

Membership

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
level Audience No
user User No

Genre

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
title String Yes
description String Yes
fiction Boolean Yes
books Book[] No
covers Covers[] No
_count GenreCountOutputType Yes

Covers

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
url String Yes
genreId String Yes
genre Genre Yes

BookCategory

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
title String Yes
description String Yes
books Book[] No
_count BookCategoryCountOutputType Yes

Book

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
status BookStatus No
prospect Boolean Yes
title String Yes
cover String Yes
genreId String Yes
hook String No
synopsis String No
back String No
words Int Yes
galleryId String No
genre Genre Yes
categories BookCategory[] No
authors User[] No
chapters Chapter[] No
characters Character[] No
gallery Gallery No
fans Follow[] No
likes Like[] No
_count BookCountOutputType Yes

Character

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
name String Yes
familyName String Yes
givenName String Yes
middleName String Yes
thumbnail String Yes
age String Yes
role String Yes
description String Yes
backstory String Yes
title String Yes
archetype String Yes
galleryId String No
likes Like[] No
fans Follow[] No
books Book[] No
chapters Chapter[] No
gallery Gallery No
_count CharacterCountOutputType Yes

Chapter

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
content String Yes
words Int Yes
bookId String Yes
galleryId String No
characters Character[] No
book Book Yes
gallery Gallery No
_count ChapterCountOutputType Yes

Block

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
entity Entity No
entityId String No
blockedId String Yes
galleryId String No
threadId String No
userId String Yes
blockedUser User Yes
blockedGallery Gallery No
blockedThread CommentThread No
user User Yes

VerificationToken

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes

Account

Name Type Nullable
id String Yes
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
oauth_token_secret String No
oauth_token String No
user User Yes

Session

Name Type Nullable
id String Yes
sessionToken String Yes
userId String Yes
expires DateTime Yes
user User Yes

AggregateUser

Name Type Nullable
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

UserGroupByOutputType

Name Type Nullable
id String Yes
name String No
email String No
emailVerified DateTime No
image String No
membershipId String No
_count UserCountAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregatePost

Name Type Nullable
_count PostCountAggregateOutputType No
_min PostMinAggregateOutputType No
_max PostMaxAggregateOutputType No

PostGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
content String No
shareId String No
commentId String No
authorId String Yes
_count PostCountAggregateOutputType No
_min PostMinAggregateOutputType No
_max PostMaxAggregateOutputType No


NewsGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
title String Yes
banner String No
startDate DateTime No
endDate DateTime No
postId String Yes
audience Audience Yes
views Int Yes
priority Int Yes
_count NewsCountAggregateOutputType No
_avg NewsAvgAggregateOutputType No
_sum NewsSumAggregateOutputType No
_min NewsMinAggregateOutputType No
_max NewsMaxAggregateOutputType No

AggregateGallery

Name Type Nullable
_count GalleryCountAggregateOutputType No
_min GalleryMinAggregateOutputType No
_max GalleryMaxAggregateOutputType No

GalleryGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
title String No
description String No
authorId String Yes
shareId String No
_count GalleryCountAggregateOutputType No
_min GalleryMinAggregateOutputType No
_max GalleryMaxAggregateOutputType No


ImageGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
title String No
authorId String Yes
galleryId String No
shareId String No
url String Yes
postId String No
height Int No
width Int No
_count ImageCountAggregateOutputType No
_avg ImageAvgAggregateOutputType No
_sum ImageSumAggregateOutputType No
_min ImageMinAggregateOutputType No
_max ImageMaxAggregateOutputType No

AggregateLike

Name Type Nullable
_count LikeCountAggregateOutputType No
_min LikeMinAggregateOutputType No
_max LikeMaxAggregateOutputType No

LikeGroupByOutputType

Name Type Nullable
id String Yes
authorId String Yes
postId String No
createdAt DateTime Yes
updatedAt DateTime Yes
galleryId String No
imageId String No
commentId String No
characterId String No
bookId String No
_count LikeCountAggregateOutputType No
_min LikeMinAggregateOutputType No
_max LikeMaxAggregateOutputType No

AggregateShare

Name Type Nullable
_count ShareCountAggregateOutputType No
_min ShareMinAggregateOutputType No
_max ShareMaxAggregateOutputType No

ShareGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
authorId String Yes
postId String No
galleryId String No
imageId String No
_count ShareCountAggregateOutputType No
_min ShareMinAggregateOutputType No
_max ShareMaxAggregateOutputType No

AggregateFollow

Name Type Nullable
_count FollowCountAggregateOutputType No
_min FollowMinAggregateOutputType No
_max FollowMaxAggregateOutputType No

FollowGroupByOutputType

Name Type Nullable
id String Yes
followerId String Yes
followingId String No
createdAt DateTime Yes
updatedAt DateTime Yes
characterId String No
bookId String No
_count FollowCountAggregateOutputType No
_min FollowMinAggregateOutputType No
_max FollowMaxAggregateOutputType No

AggregateFan

Name Type Nullable
_count FanCountAggregateOutputType No
_min FanMinAggregateOutputType No
_max FanMaxAggregateOutputType No

FanGroupByOutputType

Name Type Nullable
id String Yes
fanId String Yes
fanOfId String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
_count FanCountAggregateOutputType No
_min FanMinAggregateOutputType No
_max FanMaxAggregateOutputType No

AggregateChatRoom

Name Type Nullable
_count ChatRoomCountAggregateOutputType No
_min ChatRoomMinAggregateOutputType No
_max ChatRoomMaxAggregateOutputType No

ChatRoomGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
party String Yes
_count ChatRoomCountAggregateOutputType No
_min ChatRoomMinAggregateOutputType No
_max ChatRoomMaxAggregateOutputType No

AggregateChatMessage

Name Type Nullable
_count ChatMessageCountAggregateOutputType No
_min ChatMessageMinAggregateOutputType No
_max ChatMessageMaxAggregateOutputType No

ChatMessageGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
visible Boolean Yes
seen Boolean Yes
chatRoomId String Yes
authorId String Yes
content String Yes
_count ChatMessageCountAggregateOutputType No
_min ChatMessageMinAggregateOutputType No
_max ChatMessageMaxAggregateOutputType No

AggregateCommentThread

Name Type Nullable
_count CommentThreadCountAggregateOutputType No
_min CommentThreadMinAggregateOutputType No
_max CommentThreadMaxAggregateOutputType No

CommentThreadGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
entity Entity Yes
requiredRole Role Yes
_count CommentThreadCountAggregateOutputType No
_min CommentThreadMinAggregateOutputType No
_max CommentThreadMaxAggregateOutputType No

AggregateComment

Name Type Nullable
_count CommentCountAggregateOutputType No
_min CommentMinAggregateOutputType No
_max CommentMaxAggregateOutputType No

CommentGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
threadType Entity Yes
threadId String Yes
authorId String Yes
content String Yes
visible Boolean Yes
_count CommentCountAggregateOutputType No
_min CommentMinAggregateOutputType No
_max CommentMaxAggregateOutputType No

AggregateCommune

Name Type Nullable
_count CommuneCountAggregateOutputType No
_min CommuneMinAggregateOutputType No
_max CommuneMaxAggregateOutputType No

CommuneGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
ownerId String Yes
entity Entity Yes
galleryId String No
threadId String No
_count CommuneCountAggregateOutputType No
_min CommuneMinAggregateOutputType No
_max CommuneMaxAggregateOutputType No

AggregateCommuneUser

Name Type Nullable
_count CommuneUserCountAggregateOutputType No
_min CommuneUserMinAggregateOutputType No
_max CommuneUserMaxAggregateOutputType No

CommuneUserGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
communeId String Yes
userId String Yes
role Role Yes
_count CommuneUserCountAggregateOutputType No
_min CommuneUserMinAggregateOutputType No
_max CommuneUserMaxAggregateOutputType No

AggregateMembership

Name Type Nullable
_count MembershipCountAggregateOutputType No
_min MembershipMinAggregateOutputType No
_max MembershipMaxAggregateOutputType No

MembershipGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
level Audience No
_count MembershipCountAggregateOutputType No
_min MembershipMinAggregateOutputType No
_max MembershipMaxAggregateOutputType No

AggregateGenre

Name Type Nullable
_count GenreCountAggregateOutputType No
_min GenreMinAggregateOutputType No
_max GenreMaxAggregateOutputType No

GenreGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
title String Yes
description String Yes
fiction Boolean Yes
_count GenreCountAggregateOutputType No
_min GenreMinAggregateOutputType No
_max GenreMaxAggregateOutputType No

AggregateCovers

Name Type Nullable
_count CoversCountAggregateOutputType No
_min CoversMinAggregateOutputType No
_max CoversMaxAggregateOutputType No

CoversGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
url String Yes
genreId String Yes
_count CoversCountAggregateOutputType No
_min CoversMinAggregateOutputType No
_max CoversMaxAggregateOutputType No

AggregateBookCategory

Name Type Nullable
_count BookCategoryCountAggregateOutputType No
_min BookCategoryMinAggregateOutputType No
_max BookCategoryMaxAggregateOutputType No

BookCategoryGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
title String Yes
description String Yes
_count BookCategoryCountAggregateOutputType No
_min BookCategoryMinAggregateOutputType No
_max BookCategoryMaxAggregateOutputType No


BookGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
status BookStatus No
prospect Boolean Yes
title String Yes
cover String Yes
genreId String Yes
hook String No
synopsis String No
back String No
words Int Yes
galleryId String No
_count BookCountAggregateOutputType No
_avg BookAvgAggregateOutputType No
_sum BookSumAggregateOutputType No
_min BookMinAggregateOutputType No
_max BookMaxAggregateOutputType No

AggregateCharacter

Name Type Nullable
_count CharacterCountAggregateOutputType No
_min CharacterMinAggregateOutputType No
_max CharacterMaxAggregateOutputType No

CharacterGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
name String Yes
familyName String Yes
givenName String Yes
middleName String Yes
thumbnail String Yes
age String Yes
role String Yes
description String Yes
backstory String Yes
title String Yes
archetype String Yes
galleryId String No
_count CharacterCountAggregateOutputType No
_min CharacterMinAggregateOutputType No
_max CharacterMaxAggregateOutputType No


ChapterGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
active Boolean Yes
content String Yes
words Int Yes
bookId String Yes
galleryId String No
_count ChapterCountAggregateOutputType No
_avg ChapterAvgAggregateOutputType No
_sum ChapterSumAggregateOutputType No
_min ChapterMinAggregateOutputType No
_max ChapterMaxAggregateOutputType No

AggregateBlock

Name Type Nullable
_count BlockCountAggregateOutputType No
_min BlockMinAggregateOutputType No
_max BlockMaxAggregateOutputType No

BlockGroupByOutputType

Name Type Nullable
id String Yes
createdAt DateTime Yes
updatedAt DateTime Yes
entity Entity No
entityId String No
blockedId String Yes
galleryId String No
threadId String No
userId String Yes
_count BlockCountAggregateOutputType No
_min BlockMinAggregateOutputType No
_max BlockMaxAggregateOutputType No


VerificationTokenGroupByOutputType

Name Type Nullable
identifier String Yes
token String Yes
expires DateTime Yes
_count VerificationTokenCountAggregateOutputType No
_min VerificationTokenMinAggregateOutputType No
_max VerificationTokenMaxAggregateOutputType No


AccountGroupByOutputType

Name Type Nullable
id String Yes
userId String Yes
type String Yes
provider String Yes
providerAccountId String Yes
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
oauth_token_secret String No
oauth_token String No
_count AccountCountAggregateOutputType No
_avg AccountAvgAggregateOutputType No
_sum AccountSumAggregateOutputType No
_min AccountMinAggregateOutputType No
_max AccountMaxAggregateOutputType No

AggregateSession

Name Type Nullable
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No

SessionGroupByOutputType

Name Type Nullable
id String Yes
sessionToken String Yes
userId String Yes
expires DateTime Yes
_count SessionCountAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

UserCountOutputType

Name Type Nullable
accounts Int Yes
blocking Int Yes
blocked Int Yes
chatMessages Int Yes
comments Int Yes
ownedCommunes Int Yes
communes Int Yes
fanOf Int Yes
fans Int Yes
follower Int Yes
following Int Yes
galleries Int Yes
images Int Yes
likes Int Yes
posts Int Yes
sessions Int Yes
shares Int Yes
chats Int Yes
books Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
email Int Yes
emailVerified Int Yes
image Int Yes
membershipId Int Yes
_all Int Yes

UserMinAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
emailVerified DateTime No
image String No
membershipId String No

UserMaxAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
emailVerified DateTime No
image String No
membershipId String No

PostCountOutputType

Name Type Nullable
images Int Yes
likes Int Yes
post_comments Int Yes
shares Int Yes

PostCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
visible Int Yes
content Int Yes
shareId Int Yes
commentId Int Yes
authorId Int Yes
_all Int Yes

PostMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String No
shareId String No
commentId String No
authorId String No

PostMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
content String No
shareId String No
commentId String No
authorId String No

NewsCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
visible Int Yes
title Int Yes
banner Int Yes
startDate Int Yes
endDate Int Yes
postId Int Yes
audience Int Yes
views Int Yes
priority Int Yes
_all Int Yes

NewsAvgAggregateOutputType

Name Type Nullable
views Float No
priority Float No

NewsSumAggregateOutputType

Name Type Nullable
views Int No
priority Int No

NewsMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
banner String No
startDate DateTime No
endDate DateTime No
postId String No
audience Audience No
views Int No
priority Int No

NewsMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
banner String No
startDate DateTime No
endDate DateTime No
postId String No
audience Audience No
views Int No
priority Int No

GalleryCountOutputType

Name Type Nullable
blocking Int Yes
images Int Yes
likes Int Yes
shares Int Yes

GalleryCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
visible Int Yes
title Int Yes
description Int Yes
authorId Int Yes
shareId Int Yes
_all Int Yes

GalleryMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
description String No
authorId String No
shareId String No

GalleryMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
description String No
authorId String No
shareId String No

ImageCountOutputType

Name Type Nullable
likes Int Yes
shares Int Yes

ImageCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
visible Int Yes
title Int Yes
authorId Int Yes
galleryId Int Yes
shareId Int Yes
url Int Yes
postId Int Yes
height Int Yes
width Int Yes
_all Int Yes

ImageAvgAggregateOutputType

Name Type Nullable
height Float No
width Float No

ImageSumAggregateOutputType

Name Type Nullable
height Int No
width Int No

ImageMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
authorId String No
galleryId String No
shareId String No
url String No
postId String No
height Int No
width Int No

ImageMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
title String No
authorId String No
galleryId String No
shareId String No
url String No
postId String No
height Int No
width Int No

LikeCountAggregateOutputType

Name Type Nullable
id Int Yes
authorId Int Yes
postId Int Yes
createdAt Int Yes
updatedAt Int Yes
galleryId Int Yes
imageId Int Yes
commentId Int Yes
characterId Int Yes
bookId Int Yes
_all Int Yes

LikeMinAggregateOutputType

Name Type Nullable
id String No
authorId String No
postId String No
createdAt DateTime No
updatedAt DateTime No
galleryId String No
imageId String No
commentId String No
characterId String No
bookId String No

LikeMaxAggregateOutputType

Name Type Nullable
id String No
authorId String No
postId String No
createdAt DateTime No
updatedAt DateTime No
galleryId String No
imageId String No
commentId String No
characterId String No
bookId String No

ShareCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
visible Int Yes
authorId Int Yes
postId Int Yes
galleryId Int Yes
imageId Int Yes
_all Int Yes

ShareMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String No
galleryId String No
imageId String No

ShareMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
authorId String No
postId String No
galleryId String No
imageId String No

FollowCountAggregateOutputType

Name Type Nullable
id Int Yes
followerId Int Yes
followingId Int Yes
createdAt Int Yes
updatedAt Int Yes
characterId Int Yes
bookId Int Yes
_all Int Yes

FollowMinAggregateOutputType

Name Type Nullable
id String No
followerId String No
followingId String No
createdAt DateTime No
updatedAt DateTime No
characterId String No
bookId String No

FollowMaxAggregateOutputType

Name Type Nullable
id String No
followerId String No
followingId String No
createdAt DateTime No
updatedAt DateTime No
characterId String No
bookId String No

FanCountAggregateOutputType

Name Type Nullable
id Int Yes
fanId Int Yes
fanOfId Int Yes
createdAt Int Yes
updatedAt Int Yes
_all Int Yes

FanMinAggregateOutputType

Name Type Nullable
id String No
fanId String No
fanOfId String No
createdAt DateTime No
updatedAt DateTime No

FanMaxAggregateOutputType

Name Type Nullable
id String No
fanId String No
fanOfId String No
createdAt DateTime No
updatedAt DateTime No

ChatRoomCountOutputType

Name Type Nullable
messages Int Yes
users Int Yes

ChatRoomCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
visible Int Yes
party Int Yes
_all Int Yes

ChatRoomMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No

ChatRoomMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
party String No

ChatMessageCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
visible Int Yes
seen Int Yes
chatRoomId Int Yes
authorId Int Yes
content Int Yes
_all Int Yes

ChatMessageMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
chatRoomId String No
authorId String No
content String No

ChatMessageMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
visible Boolean No
seen Boolean No
chatRoomId String No
authorId String No
content String No

CommentThreadCountOutputType

Name Type Nullable
blocked Int Yes
comments Int Yes

CommentThreadCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
entity Int Yes
requiredRole Int Yes
_all Int Yes

CommentThreadMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No

CommentThreadMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
requiredRole Role No

CommentCountOutputType

Name Type Nullable
likes Int Yes

CommentCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
threadType Int Yes
threadId Int Yes
authorId Int Yes
content Int Yes
visible Int Yes
_all Int Yes

CommentMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
threadId String No
authorId String No
content String No
visible Boolean No

CommentMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
threadType Entity No
threadId String No
authorId String No
content String No
visible Boolean No

CommuneCountOutputType

Name Type Nullable
users Int Yes

CommuneCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
ownerId Int Yes
entity Int Yes
galleryId Int Yes
threadId Int Yes
_all Int Yes

CommuneMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
ownerId String No
entity Entity No
galleryId String No
threadId String No

CommuneMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
ownerId String No
entity Entity No
galleryId String No
threadId String No

CommuneUserCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
communeId Int Yes
userId Int Yes
role Int Yes
_all Int Yes

CommuneUserMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
communeId String No
userId String No
role Role No

CommuneUserMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
communeId String No
userId String No
role Role No

MembershipCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
active Int Yes
level Int Yes
_all Int Yes

MembershipMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
level Audience No

MembershipMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
level Audience No

GenreCountOutputType

Name Type Nullable
books Int Yes
covers Int Yes

GenreCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
title Int Yes
description Int Yes
fiction Int Yes
_all Int Yes

GenreMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No

GenreMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No
fiction Boolean No

CoversCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
url Int Yes
genreId Int Yes
_all Int Yes

CoversMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No
genreId String No

CoversMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
url String No
genreId String No

BookCategoryCountOutputType

Name Type Nullable
books Int Yes

BookCategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
title Int Yes
description Int Yes
_all Int Yes

BookCategoryMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No

BookCategoryMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
title String No
description String No

BookCountOutputType

Name Type Nullable
categories Int Yes
authors Int Yes
chapters Int Yes
characters Int Yes
fans Int Yes
likes Int Yes

BookCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
active Int Yes
status Int Yes
prospect Int Yes
title Int Yes
cover Int Yes
genreId Int Yes
hook Int Yes
synopsis Int Yes
back Int Yes
words Int Yes
galleryId Int Yes
_all Int Yes

BookAvgAggregateOutputType

Name Type Nullable
words Float No

BookSumAggregateOutputType

Name Type Nullable
words Int No

BookMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus No
prospect Boolean No
title String No
cover String No
genreId String No
hook String No
synopsis String No
back String No
words Int No
galleryId String No

BookMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
status BookStatus No
prospect Boolean No
title String No
cover String No
genreId String No
hook String No
synopsis String No
back String No
words Int No
galleryId String No

CharacterCountOutputType

Name Type Nullable
likes Int Yes
fans Int Yes
books Int Yes
chapters Int Yes

CharacterCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
active Int Yes
name Int Yes
familyName Int Yes
givenName Int Yes
middleName Int Yes
thumbnail Int Yes
age Int Yes
role Int Yes
description Int Yes
backstory Int Yes
title Int Yes
archetype Int Yes
galleryId Int Yes
_all Int Yes

CharacterMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String No

CharacterMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
name String No
familyName String No
givenName String No
middleName String No
thumbnail String No
age String No
role String No
description String No
backstory String No
title String No
archetype String No
galleryId String No

ChapterCountOutputType

Name Type Nullable
characters Int Yes

ChapterCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
active Int Yes
content Int Yes
words Int Yes
bookId Int Yes
galleryId Int Yes
_all Int Yes

ChapterAvgAggregateOutputType

Name Type Nullable
words Float No

ChapterSumAggregateOutputType

Name Type Nullable
words Int No

ChapterMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
bookId String No
galleryId String No

ChapterMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
active Boolean No
content String No
words Int No
bookId String No
galleryId String No

BlockCountAggregateOutputType

Name Type Nullable
id Int Yes
createdAt Int Yes
updatedAt Int Yes
entity Int Yes
entityId Int Yes
blockedId Int Yes
galleryId Int Yes
threadId Int Yes
userId Int Yes
_all Int Yes

BlockMinAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
entityId String No
blockedId String No
galleryId String No
threadId String No
userId String No

BlockMaxAggregateOutputType

Name Type Nullable
id String No
createdAt DateTime No
updatedAt DateTime No
entity Entity No
entityId String No
blockedId String No
galleryId String No
threadId String No
userId String No

VerificationTokenCountAggregateOutputType

Name Type Nullable
identifier Int Yes
token Int Yes
expires Int Yes
_all Int Yes

VerificationTokenMinAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No

VerificationTokenMaxAggregateOutputType

Name Type Nullable
identifier String No
token String No
expires DateTime No

AccountCountAggregateOutputType

Name Type Nullable
id Int Yes
userId Int Yes
type Int Yes
provider Int Yes
providerAccountId Int Yes
refresh_token Int Yes
access_token Int Yes
expires_at Int Yes
token_type Int Yes
scope Int Yes
id_token Int Yes
session_state Int Yes
oauth_token_secret Int Yes
oauth_token Int Yes
_all Int Yes

AccountAvgAggregateOutputType

Name Type Nullable
expires_at Float No

AccountSumAggregateOutputType

Name Type Nullable
expires_at Int No

AccountMinAggregateOutputType

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
oauth_token_secret String No
oauth_token String No

AccountMaxAggregateOutputType

Name Type Nullable
id String No
userId String No
type String No
provider String No
providerAccountId String No
refresh_token String No
access_token String No
expires_at Int No
token_type String No
scope String No
id_token String No
session_state String No
oauth_token_secret String No
oauth_token String No

SessionCountAggregateOutputType

Name Type Nullable
id Int Yes
sessionToken Int Yes
userId Int Yes
expires Int Yes
_all Int Yes

SessionMinAggregateOutputType

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No

SessionMaxAggregateOutputType

Name Type Nullable
id String No
sessionToken String No
userId String No
expires DateTime No